wok-current annotate pixman/receipt @ rev 6266
Fix pixman. Added glib-dev for build depends even though i can build without it. Not building with -j 4.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Sep 14 17:50:39 2010 +0000 (2010-09-14) |
parents | 79b097722044 |
children | e96a338d06d4 |
rev | line source |
---|---|
pankso@831 | 1 # SliTaz package receipt. |
pankso@831 | 2 |
pankso@831 | 3 PACKAGE="pixman" |
slaxemulator@6262 | 4 VERSION="0.18.4" |
pankso@831 | 5 CATEGORY="x-window" |
pankso@831 | 6 SHORT_DESC="Pixman library." |
pankso@831 | 7 MAINTAINER="pankso@slitaz.org" |
slaxemulator@6266 | 8 BUILD_DEPENDS="perl glib-dev" |
pankso@831 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@831 | 10 WEB_SITE="http://www.cairographics.org/" |
pankso@831 | 11 WGET_URL="http://cairographics.org/releases/$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 \ |
pankso@831 | 20 --with-html-dir=/usr/share/doc \ |
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 } |