wok view xorg-libXft/receipt @ rev 13700

tazbug-website: empty functions BREAK cook
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 15 14:43:36 2012 +0100 (2012-12-15)
parents c47a5b8d06f0
children baf2b1151fa6
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXft"
4 VERSION="2.3.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXft"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 DEPENDS="expat fontconfig xorg-libXrender"
14 BUILD_DEPENDS="freetype-dev expat-dev fontconfig-dev xorg-libXrender-dev \
15 xorg-xproto xorg-libX11-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }