wok-current rev 5872
Add: ufraw 0.17
author | Antoine Bodin <gokhlayeh@mailoo.org> |
---|---|
date | Tue Jul 20 19:00:46 2010 +0200 (2010-07-20) |
parents | 035a319a4e53 |
children | aafdac59e123 |
files | gimp-plugin-ufraw/receipt ufraw-locales/receipt ufraw/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gimp-plugin-ufraw/receipt Tue Jul 20 19:00:46 2010 +0200 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gimp-plugin-ufraw" 1.7 +VERSION="0.17" 1.8 +CATEGORY="graphics" 1.9 +SHORT_DESC="Add raw files support to GIMP with UFRaw." 1.10 +MAINTAINER="gokhlayeh@mailoo.org" 1.11 +DEPENDS="gimp" 1.12 +SUGGESTED="ufraw-locales" 1.13 +WANTED="ufraw" 1.14 +WEB_SITE="http://ufraw.sourceforge.net/" 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 1.20 + cp -a $_pkg/usr/lib/ $fs/usr 1.21 +} 1.22 \ No newline at end of file
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/ufraw-locales/receipt Tue Jul 20 19:00:46 2010 +0200 2.3 @@ -0,0 +1,16 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="ufraw-locales" 2.7 +VERSION="0.17" 2.8 +CATEGORY="misc" 2.9 +SHORT_DESC="Locales for ufraw and gimp-plugin-ufraw." 2.10 +MAINTAINER="gokhlayeh@mailoo.org" 2.11 +WANTED="ufraw" 2.12 +WEB_SITE="http://ufraw.sourceforge.net/" 2.13 + 2.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.15 +genpkg_rules() 2.16 +{ 2.17 + mkdir -p $fs/usr $fs/usr/share 2.18 + cp -a $_pkg/usr/share/locale $fs/usr/share 2.19 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/ufraw/receipt Tue Jul 20 19:00:46 2010 +0200 3.3 @@ -0,0 +1,34 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="ufraw" 3.7 +VERSION="0.17" 3.8 +CATEGORY="graphics" 3.9 +SHORT_DESC="Utility to read and manipulate raw images from digital cameras." 3.10 +MAINTAINER="gokhlayeh@mailoo.org" 3.11 +DEPENDS="gtk+ exiv2 libgtkimageview libgomp" 3.12 +BUILD_DEPENDS="gimp-dev lcms-dev tiff-dev exiv2-dev gtk+-dev libgtkimageview-dev" 3.13 +SUGGESTED="ufraw-locales" 3.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.15 +WEB_SITE="http://ufraw.sourceforge.net/" 3.16 +WGET_URL="http://downloads.sourceforge.net/project/ufraw/ufraw/ufraw-$VERSION/$TARBALL" 3.17 + 3.18 +# Rules to configure and make the package. 3.19 +compile_rules() 3.20 +{ 3.21 + cd $src 3.22 + ./configure \ 3.23 + --prefix=/usr \ 3.24 + --infodir=/usr/share/info \ 3.25 + --mandir=/usr/share/man \ 3.26 + $CONFIGURE_ARGS && 3.27 + make && make DESTDIR=$PWD/_pkg install 3.28 +} 3.29 + 3.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.31 +genpkg_rules() 3.32 +{ 3.33 + mkdir -p $fs/usr/share/applications 3.34 + cp -a $_pkg/usr/bin $fs/usr 3.35 + cp -a $src/ufraw.desktop $fs/usr/share/applications 3.36 +} 3.37 +