milis/talimatname/genel/chromaprint/talimat

21 lines
477 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Herhangi bir ses kaynağından parmak izi ayıklamak için özel bir algoritma uygular.
# URL: http://acoustid.org/chromaprint/
# Packager: milisarge
# Depends on: ffmpeg cmake
name=chromaprint
version=1.2
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=ON \
.
make
make DESTDIR=$PKG install
}