contrib/vamp-plugin-sdk/Pkgfile

29 lines
597 B
Plaintext

# Description: The Vamp audio analysis plug-in system
# URL: https://www.vamp-plugins.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libsndfile
name=vamp-plugin-sdk
version=2.10.0
release=2
source=(https://code.soundsoftware.ac.uk/attachments/download/2691/$name-$version.tar.gz)
build() {
cd $name-$version
export LIBDIR=lib
export CFLAGS="$CFLAGS -fPIC -Wall"
export CXXFLAGS="$CFLAGS -fPIC -Wall"
./configure --prefix=/usr
make -j1
make DESTDIR=$PKG -j1 install
find $PKG/usr/lib \(\
-name '*.a' -o \
-name '*.la' \
\) -print -delete
}