milis/talimatname/genel/ladspa/talimat

30 lines
803 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: Linux Ses Geliştiricisinin Basit Eklenti API'sı (LADSPA)
# URL: http://www.ladspa.org/
# Packager: alihan-ozturk28@hotmail.com
# Depends on :
name=ladspa
version=1.13
release=1
source=(https://github.com/OpenMandrivaAssociation/ladspa/raw/master/ladspa_sdk_$version.tgz
ladspa-fix-memleak-in-plugin-scanning.patch
ladspa-fallback-ladspa-path.patch)
build() {
cd ladspa_sdk/src
patch -Np1 -i ../../ladspa-fix-memleak-in-plugin-scanning.patch
patch -Np2 -i ../../ladspa-fallback-ladspa-path.patch
sed \
-e 's/mkdirhier/mkdir -p/' \
-e "s#-O3#${CFLAGS} ${LDFLAGS/,--as-needed/}#" \
-i makefile
make targets
make INSTALL_PLUGINS_DIR="$PKG/usr/lib/ladspa/" \
INSTALL_INCLUDE_DIR="$PKG/usr/include/" \
INSTALL_BINARY_DIR="$PKG/usr/bin/" install
}