PKGBUILDs/extra/lensfun/PKGBUILD
2015-01-11 02:35:06 +00:00

32 lines
826 B
Bash

# $Id$
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disable sse, sse2
pkgname=lensfun
pkgver=0.3.0
pkgrel=1
pkgdesc="Database of photographic lenses and a library that allows advanced access to the database"
arch=(i686 x86_64)
url="http://lensfun.sourceforge.net"
license=('LGPL3')
depends=('glibc' 'glib2')
makedepends=('libpng' 'doxygen' 'cmake')
source=("http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('60e2bf3a6a2f495076db1d88778a00d358cf0b69')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
cmake -DLENSFUN_INSTALL_PREFIX=/usr \
-DBUILD_FOR_SSE=off \
-DBUILD_FOR_SSE2=off\
.
make all
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
}