wok-stable annotate ufraw/receipt @ rev 12465

Up e2fsprogs (1.44.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 04 18:42:23 2019 +0100 (2019-03-04)
parents af022550edde
children
rev   line source
gokhlayeh@5872 1 # SliTaz package receipt.
gokhlayeh@5872 2
gokhlayeh@5872 3 PACKAGE="ufraw"
gokhlayeh@5872 4 VERSION="0.17"
gokhlayeh@5872 5 CATEGORY="graphics"
gokhlayeh@5872 6 SHORT_DESC="Utility to read and manipulate raw images from digital cameras."
gokhlayeh@7034 7 MAINTAINER="gokhlayeh@slitaz.org"
gokhlayeh@5872 8 DEPENDS="gtk+ exiv2 libgtkimageview libgomp"
pascal@12295 9 BUILD_DEPENDS="gimp-dev lcms-dev tiff-dev exiv2-dev gtk+-dev \
pascal@12295 10 libgtkimageview-dev bzip2-dev"
gokhlayeh@5872 11 SUGGESTED="ufraw-locales"
gokhlayeh@5872 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@5872 13 WEB_SITE="http://ufraw.sourceforge.net/"
gokhlayeh@5872 14 WGET_URL="http://downloads.sourceforge.net/project/ufraw/ufraw/ufraw-$VERSION/$TARBALL"
gokhlayeh@5872 15
gokhlayeh@5872 16 # Rules to configure and make the package.
gokhlayeh@5872 17 compile_rules()
gokhlayeh@5872 18 {
gokhlayeh@5872 19 cd $src
gokhlayeh@5872 20 ./configure \
gokhlayeh@5872 21 --prefix=/usr \
gokhlayeh@5872 22 --infodir=/usr/share/info \
gokhlayeh@5872 23 --mandir=/usr/share/man \
gokhlayeh@5872 24 $CONFIGURE_ARGS &&
gokhlayeh@5872 25 make && make DESTDIR=$PWD/_pkg install
gokhlayeh@5872 26 }
gokhlayeh@5872 27
gokhlayeh@5872 28 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@5872 29 genpkg_rules()
gokhlayeh@5872 30 {
gokhlayeh@5872 31 mkdir -p $fs/usr/share/applications
gokhlayeh@5872 32 cp -a $_pkg/usr/bin $fs/usr
gokhlayeh@5872 33 cp -a $src/ufraw.desktop $fs/usr/share/applications
gokhlayeh@5872 34 }
gokhlayeh@5872 35