wok-6.x rev 294
Add: imagemagick and mjpegtools
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Feb 29 17:14:20 2008 +0100 (2008-02-29) |
parents | 6633f0de123f |
children | 7500356beb11 |
files | imagemagick-dev/receipt imagemagick/receipt mjpegtools/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/imagemagick-dev/receipt Fri Feb 29 17:14:20 2008 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="imagemagick-dev" 1.7 +VERSION="6.3.9" 1.8 +CATEGORY="graphics" 1.9 +SHORT_DESC="ImagesMagick devel files." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +SOURCE="ImageMagick" 1.12 +WANTED="imagemagick" 1.13 +WEB_SITE="http://www.imagemagick.org/" 1.14 + 1.15 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.16 +genpkg_rules() 1.17 +{ 1.18 + mkdir -p $fs/usr/lib 1.19 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 1.20 + cp -a $_pkg/usr/include $fs/usr 1.21 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.22 +} 1.23 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/imagemagick/receipt Fri Feb 29 17:14:20 2008 +0100 2.3 @@ -0,0 +1,38 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="imagemagick" 2.7 +VERSION="6.3.9" 2.8 +CATEGORY="graphics" 2.9 +SHORT_DESC="Images manipulation programs." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +DEPENDS="xorg jpeg libpng tiff libxml2 freetype" 2.12 +BUILD_DEPENDS="jpeg-dev libpng-dev tiff-dev libxml2-dev" 2.13 +SOURCE="ImageMagick" 2.14 +TARBALL="$SOURCE-$VERSION-0.tar.bz2" 2.15 +WEB_SITE="http://www.imagemagick.org/" 2.16 +WGET_URL="ftp://ftp.imagemagick.org/pub/ImageMagick/$TARBALL" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 +compile_rules() 2.20 +{ 2.21 + cd $src 2.22 + ./configure \ 2.23 + --prefix=/usr \ 2.24 + --infodir=/usr/share/info \ 2.25 + --mandir=/usr/share/man \ 2.26 + --without-perl 2.27 + $CONFIGURE_ARGS 2.28 + make 2.29 + make DESTDIR=$PWD/_pkg install 2.30 +} 2.31 + 2.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.33 +genpkg_rules() 2.34 +{ 2.35 + mkdir -p $fs/usr/lib $fs/usr/share 2.36 + cp -a $_pkg/usr/bin $fs/usr 2.37 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.38 + cp -a $_pkg/usr/lib/$SOURCE-$VERSION $fs/usr/lib 2.39 + cp -a $_pkg/usr/share/$SOURCE-$VERSION $fs/usr/share 2.40 +} 2.41 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/mjpegtools/receipt Fri Feb 29 17:14:20 2008 +0100 3.3 @@ -0,0 +1,33 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="mjpegtools" 3.7 +VERSION="1.9.0rc3" 3.8 +CATEGORY="multimedia" 3.9 +SHORT_DESC="MPEG manipulation tools." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="libdv" 3.12 +BUILD_DEPENDS="libdv-dev" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WEB_SITE="http://mjpeg.sourceforge.net/" 3.15 +WGET_URL="$SF_MIRROR/mjpeg/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + ./configure \ 3.22 + --prefix=/usr \ 3.23 + --mandir=/usr/share/man \ 3.24 + $CONFIGURE_ARGS 3.25 + make 3.26 + make DESTDIR=$PWD/_pkg install 3.27 +} 3.28 + 3.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.30 +genpkg_rules() 3.31 +{ 3.32 + mkdir -p $fs/usr/lib 3.33 + cp -a $_pkg/usr/bin $fs/usr 3.34 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 3.35 +} 3.36 +