mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:14:37 +08:00
24 lines
487 B
Bash
24 lines
487 B
Bash
|
|
pkgname=exiv2
|
|
pkgver=0.24
|
|
pkgrel=1
|
|
pkgdesc="Exif and Iptc metadata manipulation library and tools."
|
|
arch=('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=('b8a23dc56a98ede85c00718a97a8d6fc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|