mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# $Id$
|
|
# Maintainer: Jaroslav Lichtblau <svetlemodry@archlinux.org>
|
|
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
|
|
# Contributor: Dmitry N. Shilov <stormblast@land.ru>
|
|
|
|
# remove when bumped upstream
|
|
|
|
pkgname=luminancehdr
|
|
pkgver=2.5.1
|
|
pkgrel=1
|
|
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' 'qt5-webengine' 'qt5-svg'
|
|
'qt5-webkit' 'ccfits' 'desktop-file-utils' 'hicolor-icon-theme')
|
|
makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
|
|
optdepends=('hugin: align image stack functionality')
|
|
changelog=$pkgname.changelog
|
|
options=('!emptydirs')
|
|
source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2)
|
|
sha256sums=('a8986e0afba434a2e9da7e8aed19cdb763fedc8de2655bdb496c4ee9d3f41696')
|
|
|
|
build() {
|
|
cd "${srcdir}"/luminance-hdr-$pkgver
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/luminance-hdr-$pkgver
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|