20 lines
445 B
Plaintext
20 lines
445 B
Plaintext
# Description: The Vamp audio analysis plug-in system
|
|
# URL: http://www.vamp-plugins.org/
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: libsndfile
|
|
|
|
name=vamp-plugin-sdk
|
|
version=2.6
|
|
release=1
|
|
|
|
source=(https://code.soundsoftware.ac.uk/attachments/download/1520/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $SRC/$name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -Dm644 COPYING $PKG/usr/share/licenses/$pkgname/COPYING
|
|
}
|