diff options
Diffstat (limited to 'repo/ladspa/ladspa.xibuild')
-rw-r--r-- | repo/ladspa/ladspa.xibuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/repo/ladspa/ladspa.xibuild b/repo/ladspa/ladspa.xibuild new file mode 100644 index 0000000..261cd9e --- /dev/null +++ b/repo/ladspa/ladspa.xibuild @@ -0,0 +1,32 @@ +#!/bin/sh + +NAME="ladspa" +DESC="Linux Audio Developer's Simple Plug-in API, examples and tools" + +MAKEDEPS=" libsndfile" + +PKG_VER=1.17 +SOURCE="https://ladspa.org/download/ladspa_sdk_$PKG_VER.tgz" + +ADDITIONAL=" +fix-memleak-in-plugin-scanning.patch +" + +prepare () { + apply_patches +} + +build() { + make targets +} + +check() { + make test +} + +package() { + make INSTALL_PLUGINS_DIR="$PKG_DEST/usr/lib/ladspa/" \ + INSTALL_INCLUDE_DIR="$PKG_DEST/usr/include/" \ + INSTALL_BINARY_DIR="$PKG_DEST/usr/bin/" install +} + |