mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 19:14:35 +08:00
27 lines
691 B
Bash
27 lines
691 B
Bash
# Maintainer:
|
|
# Contributors: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Anke Boersma (abveritas) <abveritas@chakra-project.org>
|
|
|
|
pkgname=libexif
|
|
pkgver=0.6.21
|
|
pkgrel=1
|
|
pkgdesc='A library to parse an EXIF file and read the data from those tags'
|
|
arch=('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=('27339b89850f28c8f1c237f233e05b27')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|