blob: 70aac1929f6a04ebd839f4928f64e1daa763a27d (
plain)
1 # Description: Simple command line interface to libexif
2 # URL: http://libexif.sourceforge.net/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: libexif popt
5
6 name=exif
7 version=0.6.21
8 release=1
9 source=(http://downloads.sourceforge.net/project/libexif/$name/$version/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man --disable-nls
14 make
15 make DESTDIR=$PKG install
16 }
|