wok rev 1645
Add babl, babl-dev, gegl, gegl-dev. Pave the road to Gimp 2.6
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Nov 08 13:31:14 2008 +0000 (2008-11-08) |
parents | bcbd2a8e11a1 |
children | 1ff78bf058ec |
files | babl-dev/receipt babl/receipt gegl-dev/receipt gegl/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/babl-dev/receipt Sat Nov 08 13:31:14 2008 +0000 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="babl-dev" 1.7 +VERSION="0.0.22" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="pixel format translation library dev files." 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +DEPENDS="babl" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://gegl.org/babl/" 1.14 +WANTED="babl" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr/lib 1.20 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.21 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.22 + cp -a $_pkg/usr/include $fs/usr 1.23 +} 1.24 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/babl/receipt Sat Nov 08 13:31:14 2008 +0000 2.3 @@ -0,0 +1,29 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="babl" 2.7 +VERSION="0.0.22" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="pixel format translation library§." 2.10 +MAINTAINER="erjo@slitaz.org" 2.11 +DEPENDS="" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WEB_SITE="http://gegl.org/babl/" 2.14 +WGET_URL="ftp://ftp.gtk.org/pub/babl/0.0/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + cd $src 2.20 + ./configure --prefix=/usr --infodir=/usr/share/info \ 2.21 + --mandir=/usr/share/man $CONFIGURE_ARGS && \ 2.22 + make && make DESTDIR=$PWD/_pkg install 2.23 +} 2.24 + 2.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.26 +genpkg_rules() 2.27 +{ 2.28 + mkdir -p $fs/usr/lib 2.29 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.30 + cp -a $_pkg/usr/lib/babl-0.0 $fs/usr/lib 2.31 +} 2.32 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/gegl-dev/receipt Sat Nov 08 13:31:14 2008 +0000 3.3 @@ -0,0 +1,25 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="gegl-dev" 3.7 +VERSION="0.0.20" 3.8 +CATEGORY="development" 3.9 +SHORT_DESC="Generic Graphics Library dev files" 3.10 +MAINTAINER="erjo@slitaz.org" 3.11 +DEPENDS="gegl" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.13 +WEB_SITE="http://gegl.org/" 3.14 +WANTED="gegl" 3.15 + 3.16 + 3.17 + 3.18 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.19 +genpkg_rules() 3.20 +{ 3.21 + mkdir -p $fs/usr/lib/gegl-0.0 3.22 + 3.23 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 3.24 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 3.25 + cp -a $_pkg/usr/lib/gegl-0.0/*.*a $fs/usr/lib/gegl-0.0 3.26 + cp -a $_pkg/usr/include $fs/usr 3.27 +} 3.28 +
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/gegl/receipt Sat Nov 08 13:31:14 2008 +0000 4.3 @@ -0,0 +1,33 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="gegl" 4.7 +VERSION="0.0.20" 4.8 +CATEGORY="system-tools" 4.9 +SHORT_DESC="Generic Graphics Library" 4.10 +MAINTAINER="erjo@slitaz.org" 4.11 +DEPENDS="babl" 4.12 +BUILD_DEPENDS="babl-dev" 4.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 4.14 +WEB_SITE="http://gegl.org/" 4.15 +WGET_URL="ftp://ftp.gimp.org/pub/gegl/0.0/$TARBALL" 4.16 + 4.17 +# Rules to configure and make the package. 4.18 +compile_rules() 4.19 +{ 4.20 + cd $src 4.21 + ./configure --prefix=/usr \ 4.22 + --disable-docs \ 4.23 + $CONFIGURE_ARGS && \ 4.24 + make && make DESTDIR=$PWD/_pkg install 4.25 +} 4.26 + 4.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.28 +genpkg_rules() 4.29 +{ 4.30 + mkdir -p $fs/usr/lib/gegl 4.31 + cp -a $_pkg/usr/bin $fs/usr 4.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 4.33 + cp -a $_pkg/usr/lib/gegl-0.0/*.so* $fs/usr/lib/gegl 4.34 + 4.35 +} 4.36 +