summaryrefslogtreecommitdiff
path: root/taglib/Pkgfile
blob: 3e4dac133b6b159d4f19c606576f994fbe2bdbf3 (plain)
    1 # Description: Library to read and edit the meta-data of popular audio formats.
    2 # URL: http://taglib.github.io/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 # Packager: Mark Rosenstand, mark at borkware dot net
    5 # Depends on: cmake
    6 # Optional: boost
    7 
    8 name=taglib
    9 version=1.11.1
   10 release=1
   11 source=(http://taglib.github.io/releases/$name-$version.tar.gz)
   12 
   13 build() {
   14 	install -d build
   15 	cd build
   16 
   17 	cmake ../$name-$version \
   18 		-DCMAKE_INSTALL_PREFIX=/usr \
   19 		-DCMAKE_RELEASE_TYPE=Release \
   20 		-DBUILD_SHARED_LIBS=ON \
   21 		-DWITH_MP4=ON \
   22 		-DWITH_ASF=ON
   23 
   24 	make
   25 	make DESTDIR=$PKG install
   26 }

Generated by cgit