Date: Friday, February 1, 2013 @ 17:28:07 Author: arodseth Revision: 83472
Feature request FS#31385 Modified: gimp-ufraw/trunk/PKGBUILD gimp-ufraw/trunk/gimp-ufraw.install --------------------+ PKGBUILD | 34 +++++++++++++++++++++------------- gimp-ufraw.install | 2 ++ 2 files changed, 23 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-02-01 16:02:51 UTC (rev 83471) +++ PKGBUILD 2013-02-01 16:28:07 UTC (rev 83472) @@ -1,34 +1,42 @@ # $Id$ -# Maintainer: Tobias Kieslich <[email protected]> +# Maintainer: Alexander Rødseth <[email protected]> +# Contributor: Tobias Kieslich <[email protected]> +# Contributor: Martin Sugioarto <[email protected]> pkgname=gimp-ufraw pkgver=0.18 -pkgrel=5 -pkgdesc="Standalone or gimp plugin converter for raw files" -url="http://ufraw.sourceforge.net/" -arch=('i686' 'x86_64') +pkgrel=6 +pkgdesc='Standalone or gimp plugin converter for raw files' +url='http://ufraw.sourceforge.net/' +arch=('x86_64' 'i686') license=('GPL') -depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils') +depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 'lensfun') makedepends=('gimp' 'cinepaint') optdepends=('gimp: to use the gimp import plugin for raw images' 'cinepaint: to use the cinepaint import plugin for raw images') install=gimp-ufraw.install -source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz) -sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2') +source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz") +sha256sums=('24fe739c61e9e14de1900008477c8662553e93427569c1d595556d440e6b9205') build() { - cd "${srcdir}/ufraw-${pkgver}" + cd "$srcdir/ufraw-$pkgver" ./configure --prefix=/usr \ --enable-extras \ --enable-mime \ - --enable-openmp + --enable-openmp \ + --with-gimp \ + --with-cinepaint \ + --enable-contrast sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile make } package() { - cd "${srcdir}/ufraw-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -f "${pkgdir}/usr/bin/dcraw" + cd "$srcdir/ufraw-$pkgver" + + make DESTDIR="$pkgdir" install + rm -f "$pkgdir/usr/bin/dcraw" } + +# vim:set ts=2 sw=2 et: Modified: gimp-ufraw.install =================================================================== --- gimp-ufraw.install 2013-02-01 16:02:51 UTC (rev 83471) +++ gimp-ufraw.install 2013-02-01 16:28:07 UTC (rev 83472) @@ -9,3 +9,5 @@ post_remove() { update-desktop-database -q } + +# vim:set ts=2 sw=2 et:
