19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
# Description: Exif and Iptc metadata manipulation library and tools.
|
|
# URL: http://home.arcor.de/ahuggel/exiv2/index.html
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on:
|
|
|
|
name=exiv2
|
|
version=0.12
|
|
release=1
|
|
source=(http://www.exiv2.org/exiv2-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make prefix=$PKG/usr install
|
|
mv $PKG/usr/share/man $PKG/usr
|
|
rmdir $PKG/usr/share
|
|
}
|