contrib/vamp-plugin-sdk/Pkgfile

29 lines
597 B
Plaintext
Raw Normal View History

2023-09-24 09:43:27 +02:00
# Description: The Vamp audio analysis plug-in system
2018-07-22 13:12:32 +02:00
# URL: https://www.vamp-plugins.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
2018-07-22 13:12:32 +02:00
# Depends on: libsndfile
name=vamp-plugin-sdk
2020-05-18 21:45:29 +02:00
version=2.10.0
2023-09-24 09:43:27 +02:00
release=2
2024-03-06 18:58:24 +01:00
source=(https://code.soundsoftware.ac.uk/attachments/download/2691/$name-$version.tar.gz)
2018-07-22 13:12:32 +02:00
build() {
cd $name-$version
2023-09-24 09:43:27 +02:00
export LIBDIR=lib
export CFLAGS="$CFLAGS -fPIC -Wall"
export CXXFLAGS="$CFLAGS -fPIC -Wall"
./configure --prefix=/usr
2023-09-24 09:43:27 +02:00
2024-03-06 18:58:24 +01:00
make -j1
2023-09-24 09:43:27 +02:00
2024-03-06 18:58:24 +01:00
make DESTDIR=$PKG -j1 install
2023-09-24 09:43:27 +02:00
find $PKG/usr/lib \(\
-name '*.a' -o \
-name '*.la' \
\) -print -delete
2018-07-22 13:12:32 +02:00
}