blob: a3e5565374aadacfd000b3dbff4fe8cff4c463bb (
plain)
1 # Description: Library for manipulating the IPTC metadata
2 # URL: https://github.com/ianw/libiptcdata
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=libiptcdata
7 version=1.0.5
8 release=1
9 source=(https://github.com/ianw/libiptcdata/releases/download/release_${version//./_}/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --disable-nls
15 make
16 make DESTDIR=$PKG install
17 rm -fr $PKG/usr/share/{gtk-doc,locale}
18 }
|