blob: 492878eb11ef594dd68b4401725c18392676f2cb (
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 make
15 make DESTDIR=$PKG install
16 rm -fr $PKG/usr/share/{gtk-doc,locale}
17 }
|