mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
23 lines
674 B
Bash
23 lines
674 B
Bash
# $Id: PKGBUILD 59235 2009-11-21 16:13:46Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias@justdreams.de>
|
|
|
|
pkgname=libexif
|
|
pkgver=0.6.19
|
|
pkgrel=1
|
|
pkgdesc="A library to parse an EXIF file and read the data from those tags"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
url="http://sourceforge.net/projects/libexif"
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://downloads.sf.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('56144a030a4c875c600b1ccf713f69f7')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|