diff options
Diffstat (limited to 'extra/lensfun/PKGBUILD')
-rw-r--r-- | extra/lensfun/PKGBUILD | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/extra/lensfun/PKGBUILD b/extra/lensfun/PKGBUILD index 2cf69b129..8435e0a45 100644 --- a/extra/lensfun/PKGBUILD +++ b/extra/lensfun/PKGBUILD @@ -1,21 +1,32 @@ -# $Id: PKGBUILD 81449 2010-05-30 16:39:15Z tpowa $ +# $Id: PKGBUILD 135705 2011-08-17 16:07:55Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=lensfun pkgver=0.2.5 -pkgrel=1 +pkgrel=2 pkgdesc="Database of photographic lenses and a library that allows advanced access to the database" arch=(i686 x86_64 'mips64el') url="http://lensfun.berlios.de/" license=('LGPL3') depends=('glibc' 'glib2') -makedepends=('python' 'libpng') -source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +makedepends=('python' 'libpng' 'doxygen') +source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2" + "runtime.cpu.detection.fix.backport.patch") build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib || return 1 - make all || return 1 - make INSTALL_PREFIX="$pkgdir" install || return 1 + sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure + patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch" + ./configure \ + --prefix=/usr \ + --libdir=/usr/lib + make all } -md5sums=('a10438dffae68a5988fc54b0393a3755') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make INSTALL_PREFIX="$pkgdir" install +} + +md5sums=('a10438dffae68a5988fc54b0393a3755' + 'a2033928f263db319de78182ab12fb7d') |