mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:48:12 +08:00
26 lines
600 B
Bash
26 lines
600 B
Bash
#$Id: PKGBUILD 71297 2010-03-06 02:19:53Z pierre $
|
|
# Maintainer: tobias <tobias@arhlinux.org>
|
|
|
|
pkgname=exiv2
|
|
pkgver=0.19
|
|
pkgrel=1
|
|
pkgdesc="Exif and Iptc metadata manipulation library and tools."
|
|
arch=('i686' 'x86_64')
|
|
url="http://exiv2.org"
|
|
license=('GPL2')
|
|
depends=('gcc-libs' 'zlib' 'expat')
|
|
options=('!libtool')
|
|
source=("http://www.exiv2.org/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('f52fb75a2cb7512f1484deab76473e13')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|