wok view xorg-libXfont/receipt @ rev 8302

Fix: check_module.sh (into linux stuff) modified to works with tazwok-experimental
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Feb 01 02:51:09 2011 +0100 (2011-02-01)
parents 36c41101f006
children b490f13f6603
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXfont"
4 VERSION="1.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard library."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXfont"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 DEPENDS="freetype xorg-libfontenc"
11 BUILD_DEPENDS="xorg-fontsproto freetype-dev \
12 xorg-libfontenc-dev xorg-xproto xorg-xtrans"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr --sysconfdir=/etc \
22 --mandir=/usr/share/man --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }