wok view xorg-libXft/receipt @ rev 5809

nss: fix include path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 12 11:26:20 2010 +0200 (2010-07-12)
parents 7487969239ce
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXft"
4 VERSION="2.1.14"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base expat fontconfig freetype zlib \
9 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXrender"
10 SOURCE="libXft"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
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 }