23 lines
416 B
Plaintext
23 lines
416 B
Plaintext
# Description: An EXIF tag parsing library
|
|
# URL: https://libexif.github.io/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
name=libexif
|
|
version=0.6.24
|
|
release=1
|
|
source=(https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls \
|
|
--disable-docs
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share
|
|
}
|