diff options
Diffstat (limited to 'community/luminancehdr/PKGBUILD')
-rw-r--r-- | community/luminancehdr/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/luminancehdr/PKGBUILD b/community/luminancehdr/PKGBUILD new file mode 100644 index 000000000..1815ec67f --- /dev/null +++ b/community/luminancehdr/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 92941 2013-06-19 21:09:46Z bpiotrowski $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com> +# Contributor: Dmitry N. Shilov <stormblast@land.ru> + +pkgname=luminancehdr +pkgver=2.3.1 +pkgrel=3 +pkgdesc='Open source graphical user interface application that aims to provide a workflow for HDR imaging' +arch=('i686' 'x86_64') +url='http://qtpfsgui.sourceforge.net/' +license=('GPL') +depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qtwebkit') +makedepends=('cmake' 'boost' 'gtest') +optdepends=('hugin: align image stack functionality') +install=$pkgname.install +changelog=$pkgname.changelog +options=('!emptydirs') +source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/${pkgver}/luminance-hdr-${pkgver}.tar.bz2) +sha256sums=('7a2a81cd0f2da6b6780bdd47e5f902c9dfaeb8107d763ea63007b6fcdcb4d23b') + +build() { + cd "${srcdir}" + + cmake -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}" + + make DESTDIR="${pkgdir}" install +} |