PKGBUILDs/extra/lensfun/PKGBUILD

42 lines
1.1 KiB
Bash
Raw Normal View History

2015-01-11 02:35:06 +00:00
# $Id$
2013-02-11 21:14:48 +00:00
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2015-01-11 02:35:06 +00:00
# - disable sse, sse2
2013-02-11 21:14:48 +00:00
pkgname=lensfun
2016-02-16 13:24:46 +00:00
pkgver=0.3.2
2017-01-06 13:30:29 +00:00
pkgrel=3
2013-02-11 21:14:48 +00:00
pkgdesc="Database of photographic lenses and a library that allows advanced access to the database"
arch=(i686 x86_64)
2015-01-11 02:35:06 +00:00
url="http://lensfun.sourceforge.net"
2013-02-11 21:14:48 +00:00
license=('LGPL3')
depends=('glibc' 'glib2')
2015-07-09 14:16:37 +00:00
makedepends=('python' 'libpng' 'doxygen' 'cmake')
2017-01-06 13:30:29 +00:00
source=("http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.gz"
lensfun-fix-python-install-dir.patch)
sha1sums=('1d978b15aa7304d66a4931fa37ca9f8f89396c16'
'7bf2b17d0fb85800857eaf990541ea9eccca2f77')
prepare() {
cd $pkgname-$pkgver
# Fix python module install path
patch -p1 -i ../lensfun-fix-python-install-dir.patch
}
2013-04-16 15:09:36 +00:00
build() {
2017-01-06 13:30:29 +00:00
cd ${pkgname}-${pkgver}
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=lib \
2015-01-11 02:35:06 +00:00
-DBUILD_FOR_SSE=off \
2017-01-07 02:20:22 +00:00
-DBUILD_FOR_SSE2=off
2013-02-11 21:14:48 +00:00
make all
}
package() {
2017-01-06 13:30:29 +00:00
cd ${pkgname}-${pkgver}
2015-01-11 02:35:06 +00:00
make DESTDIR="$pkgdir" install
2013-02-11 21:14:48 +00:00
}