wok view xorg-libXft/receipt @ rev 9739

Fix: rapidsvn (issue40) and clean up receipt
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 10 01:45:43 2011 +0200 (2011-05-10)
parents 001263391a12
children b490f13f6603
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXft"
4 VERSION="2.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="fontconfig xorg-libXrender"
9 BUILD_DEPENDS="fontconfig-dev xorg-libXrender-dev"
10 SOURCE="libXft"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man --localstatedir=/var \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }