# HG changeset patch # User Christophe Lincoln # Date 1211110064 -7200 # Node ID 89081567bb864b7539c6a68387a609f4ebe6071c # Parent 38e7dabd3c3e431b332cc6815f0ac7fedb714f8f Add pixman (new dep for cairo) diff -r 38e7dabd3c3e -r 89081567bb86 pixman-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pixman-dev/receipt Sun May 18 13:27:44 2008 +0200 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="pixman-dev" +VERSION="0.10.0" +CATEGORY="developement" +SHORT_DESC="Pixman library devel files." +MAINTAINER="pankso@slitaz.org" +WANTED="pixman" +WEB_SITE="http://www.cairographics.org/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr +} diff -r 38e7dabd3c3e -r 89081567bb86 pixman/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pixman/receipt Sun May 18 13:27:44 2008 +0200 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="pixman" +VERSION="0.10.0" +CATEGORY="x-window" +SHORT_DESC="Pixman library." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.cairographics.org/" +WGET_URL="http://cairographics.org/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --with-html-dir=/usr/share/doc \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +}