multimedia/ladspa_sdk: Added to 12.0 repository

This commit is contained in:
Heinz Wiesinger 2010-05-11 20:01:20 +02:00 committed by Robby Workman
parent 39a50989fa
commit cb70ac0c18
4 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,4 @@
The LADSPA-SDK is a software development kit for
simple sound plugins. LADSPA is used by many programs,
so it's a simple way to integrate one plugin in various
applications.

View file

@ -0,0 +1,81 @@
#!/bin/sh
# Slackware build script for ladspa-sdk
# Written by ppr:kut <hmwiesinger@gmx.at>
# Copyright 2007 Heinz Wiesinger
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Modified by Robby Workman <rworkman@slackbuilds.org>
# No additional license terms added :)
PRGNAM=ladspa_sdk
VERSION=1.13
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM
tar xvf $CWD/${PRGNAM}_${VERSION}.tgz
cd $PRGNAM
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
cd src
make \
CFLAGS="$SLKCFLAGS -I. -Wall -Werror -fPIC" \
INSTALL_PLUGINS_DIR="/usr/lib/ladspa" \
INSTALL_BINARY_DIR="/usr/bin"
make install \
INSTALL_PLUGINS_DIR="$PKG/usr/lib/ladspa" \
INSTALL_BINARY_DIR="$PKG/usr/bin" \
INSTALL_INCLUDE_DIR="$PKG/usr/include"
cd -
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README doc/* $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="ladspa_sdk"
VERSION="1.13"
HOMEPAGE="http://www.ladspa.org/"
DOWNLOAD="http://www.ladspa.org/download/ladspa_sdk_1.13.tgz"
MD5SUM="671be3e1021d0722cadc7fb27054628e"
MAINTAINER="ppr:kut"
EMAIL="HMWiesinger@gmx.at"
APPROVED="rworkman"

View file

@ -0,0 +1,12 @@
|-----handy-ruler------------------------------------------------------|
ladspa_sdk: ladspa-sdk (Sound Plugin SDK)
ladspa_sdk:
ladspa_sdk: The LADSPA-SDK is a software development kit for
ladspa_sdk: simple sound plugins. LADSPA is used by many programs,
ladspa_sdk: so it's a simple way to integrate one plugin in various
ladspa_sdk: applications.
ladspa_sdk:
ladspa_sdk: Homepage: http://www.ladspa.org
ladspa_sdk:
ladspa_sdk:
ladspa_sdk: