mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 18:52:30 +01:00
36 lines
745 B
Plaintext
36 lines
745 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libexif
|
|
pkgver=0.6.21
|
|
pkgrel=1
|
|
pkgdesc="A library to parse an EXIF file and read the data from those tags"
|
|
url="http://sourceforge.net/projects/libexif"
|
|
arch="all"
|
|
license="LGPL"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=
|
|
makedepends=
|
|
source="http://downloads.sf.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
update_config_sub || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums="27339b89850f28c8f1c237f233e05b27 libexif-0.6.21.tar.bz2"
|