wok-4.x annotate pixman/receipt @ rev 9469
distcc: Add init script
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Mon Apr 04 00:25:20 2011 +0200 (2011-04-04) |
parents | 719c8e10f2c0 |
children | b764c5b7e0b7 |
rev | line source |
---|---|
pankso@831 | 1 # SliTaz package receipt. |
pankso@831 | 2 |
pankso@831 | 3 PACKAGE="pixman" |
slaxemulator@7312 | 4 VERSION="0.20.0" |
pankso@831 | 5 CATEGORY="x-window" |
pankso@831 | 6 SHORT_DESC="Pixman library." |
pankso@831 | 7 MAINTAINER="pankso@slitaz.org" |
slaxemulator@6291 | 8 BUILD_DEPENDS="perl" |
slaxemulator@7312 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@831 | 10 WEB_SITE="http://www.cairographics.org/" |
slaxemulator@7312 | 11 WGET_URL="$XORG_MIRROR/lib/$TARBALL" |
pankso@831 | 12 |
pankso@831 | 13 # Rules to configure and make the package. |
pankso@831 | 14 compile_rules() |
pankso@831 | 15 { |
pankso@831 | 16 cd $src |
pankso@831 | 17 ./configure \ |
pankso@831 | 18 --prefix=/usr \ |
pankso@831 | 19 --mandir=/usr/share/man \ |
slaxemulator@6291 | 20 --enable-gtk=no \ |
pankso@831 | 21 $CONFIGURE_ARGS |
slaxemulator@6266 | 22 make |
pankso@831 | 23 make DESTDIR=$PWD/_pkg install |
pankso@831 | 24 } |
pankso@831 | 25 |
pankso@831 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@831 | 27 genpkg_rules() |
pankso@831 | 28 { |
pankso@831 | 29 mkdir -p $fs/usr/lib |
pankso@831 | 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@831 | 31 } |