wok view fontconfig/receipt @ rev 71

Removed meta pkg xorg-proto (xorg-dev-proto do the job)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 25 17:16:56 2007 +0100 (2007-12-25)
parents
children f3ded5caa32a
line source
1 # SliTaz package receipt.
3 PACKAGE="fontconfig"
4 VERSION="2.4.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Font configuration utilities and library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.fontconfig.org/wiki/"
10 WGET_URL="http://fontconfig.org/release/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --sysconfdir=/etc --prefix=/usr \
17 --mandir=/usr/share/man --localstatedir=/var \
18 $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/etc $fs
30 cp -a $_pkg/var $fs
31 # Strip cmds.
32 strip -s $fs/usr/bin/*
33 strip -s $fs/usr/lib/*
34 }