chromaprint: initial import

This commit is contained in:
Danny Rawlins 2016-05-17 23:05:00 +10:00
parent 9571086762
commit ff3ae89848
3 changed files with 34 additions and 0 deletions

9
chromaprint/.footprint Normal file
View File

@ -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

1
chromaprint/.md5sum Normal file
View File

@ -0,0 +1 @@
f3745ac10b4d4d992cabe743c4a3ed0f chromaprint-1.3.1.tar.gz

24
chromaprint/Pkgfile Normal file
View File

@ -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
}