mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:57:17 +08:00
22 lines
686 B
Bash
22 lines
686 B
Bash
# $Id: PKGBUILD 81449 2010-05-30 16:39:15Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=lensfun
|
|
pkgver=0.2.5
|
|
pkgrel=1
|
|
pkgdesc="Database of photographic lenses and a library that allows advanced access to the database"
|
|
arch=(i686 x86_64)
|
|
url="http://lensfun.berlios.de/"
|
|
license=('LGPL3')
|
|
depends=('glibc' 'glib2')
|
|
makedepends=('python' 'libpng')
|
|
source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --libdir=/usr/lib || return 1
|
|
make all || return 1
|
|
make INSTALL_PREFIX="$pkgdir" install || return 1
|
|
}
|
|
md5sums=('a10438dffae68a5988fc54b0393a3755')
|