summaryrefslogtreecommitdiff
path: root/exiv2/Pkgfile
blob: dd46354fa25070c3d1b9638d5d34d40bfdfc9bad (plain)
    1 # Description:	Exif and Iptc metadata manipulation library and tools.
    2 # URL:		http://www.exiv2.org/
    3 # Maintainer:	Alan Mizrahi, alan at mizrahi dot com dot ve
    4 # Depends on:	expat cmake
    5 
    6 name=exiv2
    7 version=0.26
    8 release=2
    9 source=(https://github.com/Exiv2/exiv2/archive/v$version.tar.gz)
   10 
   11 build() {
   12 	mkdir build; cd build
   13 
   14 	cmake ../$name-$version \
   15 		-DCMAKE_BUILD_TYPE=Release \
   16 		-DCMAKE_INSTALL_PREFIX=/usr \
   17 		-DCMAKE_INSTALL_LIBDIR=lib \
   18 		-DEXIV2_ENABLE_BUILD_PO=OFF \
   19 		-DEXIV2_ENABLE_BUILD_SAMPLES=OFF \
   20 
   21 	make
   22 	make DESTDIR=$PKG install
   23 }

Generated by cgit