diff --git a/chromaprint/.footprint b/chromaprint/.footprint new file mode 100644 index 000000000..f5fb2b5c0 --- /dev/null +++ b/chromaprint/.footprint @@ -0,0 +1,9 @@ +drwxr-sr-x root/108 usr/ +drwxr-sr-x root/108 usr/include/ +-rw-r--r-- root/108 usr/include/chromaprint.h +drwxr-sr-x root/108 usr/lib/ +lrwxrwxrwx root/108 usr/lib/libchromaprint.so -> libchromaprint.so.1 +lrwxrwxrwx root/108 usr/lib/libchromaprint.so.1 -> libchromaprint.so.1.3.0 +-rwxr-xr-x root/108 usr/lib/libchromaprint.so.1.3.0 +drwxr-sr-x root/108 usr/lib/pkgconfig/ +-rw-r--r-- root/108 usr/lib/pkgconfig/libchromaprint.pc diff --git a/chromaprint/.md5sum b/chromaprint/.md5sum new file mode 100644 index 000000000..963cd0267 --- /dev/null +++ b/chromaprint/.md5sum @@ -0,0 +1 @@ +f3745ac10b4d4d992cabe743c4a3ed0f chromaprint-1.3.1.tar.gz diff --git a/chromaprint/Pkgfile b/chromaprint/Pkgfile new file mode 100644 index 000000000..54578234d --- /dev/null +++ b/chromaprint/Pkgfile @@ -0,0 +1,24 @@ +# Description: Audio fingerprinting library. +# URL: http://acoustid.org/chromaprint +# Maintainer: Danny Rawlins, crux at romster dot me +# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: cmake ffmpeg + +name=chromaprint +version=1.3.1 +release=1 +source=(https://bitbucket.org/acoustid/$name/downloads/$name-$version.tar.gz) + +build() { + cd $name-$version + + cmake . \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=RELEASE \ + -DBUILD_EXAMPLES=OFF \ + -DBUILD_TESTS=OFF \ + -DWITH_AVFFT=ON + + make + make DESTDIR=$PKG install +}