PKGBUILDs/extra/lensfun/PKGBUILD
2015-12-10 05:52:35 +00:00

32 lines
834 B
Bash

# $Id$
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disable sse, sse2
pkgname=lensfun
pkgver=0.3.1
pkgrel=2
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=('python' 'libpng' 'doxygen' 'cmake')
source=("http://sourceforge.net/projects/lensfun/files/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha1sums=('905168c39c7ccb980ee3d985778723a8c65cddb8')
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
}