mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
|
# $Id$
|
||
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.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.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
|
||
|
strip-sse.patch)
|
||
|
sha256sums=('7a2a81cd0f2da6b6780bdd47e5f902c9dfaeb8107d763ea63007b6fcdcb4d23b'
|
||
|
'f74a1d27684a7a8fa3223e1bf8e04bd2158925b8f1d0b32ef167910920511974')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}"
|
||
|
|
||
|
patch -p0 -i strip-sse.patch
|
||
|
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${srcdir}"
|
||
|
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|