mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
# $Id$
|
|
# Maintainer: Jaroslav Lichtblau <svetlemodry@archlinux.org>
|
|
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
|
|
# Contributor: Dmitry N. Shilov <stormblast@land.ru>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to remove sse and sse2 flags
|
|
|
|
pkgname=luminancehdr
|
|
pkgver=2.4.0
|
|
pkgrel=8
|
|
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-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
|
|
qt5_printsupport.diff
|
|
strip-sse.patch)
|
|
sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401'
|
|
'be2aaf8f544b086b770cec3db026e8ef7057bf3797961efeb8465197e4332c01'
|
|
'f74a1d27684a7a8fa3223e1bf8e04bd2158925b8f1d0b32ef167910920511974')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"/luminance-hdr-$pkgver
|
|
|
|
#Fix build error with Qt >= 5.3.2
|
|
patch -Np1 -i "${srcdir}"/qt5_printsupport.diff
|
|
|
|
patch -p0 -i ../strip-sse.patch
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}"/luminance-hdr-$pkgver
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/luminance-hdr-$pkgver
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|