audio/SuperCollider: Updated for version 3.4.4.

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
Felix Pfeifer 2012-04-02 14:54:01 -04:00 committed by Erik Hanson
parent 43bef7ac04
commit 1c7c383c89
3 changed files with 36 additions and 12 deletions

View file

@ -6,4 +6,10 @@ realtime sound synthesis server.
This buildscript also includes SwingOSC which is a GUI Framework for
Supercollider.
To use scvim editor copy the contents of /usr/share/scvim/vim to ~/.vim/
This will perform setcap cap_ipc_lock,cap_sys_nice=ep to /usr/bin/sclang,
/usr/bin/scsynth and /usr/bin/scvim. If you don't want this behaviour pass
CAPS="no" to the script.
This requires scons, icu4c, and jack-audio-connection-kit.

View file

@ -6,7 +6,7 @@
# contact: pfeifer[dot]felix[at]googlemail[dot]com
PRGNAM=SuperCollider
VERSION=${VERSION:-3.4.3}
VERSION=${VERSION:-3.4.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -44,8 +44,8 @@ mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-Source
tar xvf $CWD/$PRGNAM-$VERSION-Source-linux.tar.gz
unzip $CWD/SwingOSC-0.65.zip
cd $PRGNAM-Source
unzip $CWD/SwingOSC-0.65.zip
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
@ -60,12 +60,25 @@ fi
cd common
scons PREFIX=/usr X11=yes SCEL=yes SCED=yes SCVIM=yes LID=yes READLINE=no
scons install DESTDIR=$PKG
# Compile and install SwingOSC
cd ../../SwingOSC
chmod 0755 install_linux_system.sh
./install_linux_system.sh $PKG/usr
cd -
cd ..
cd -
# Compile and install SwingOSC
cd SwingOSC
chmod 0755 install_linux_system.sh
./install_linux_system.sh $PKG/usr
cd -
# install scvim
cd editors/scvim
mkdirhier $PKG/usr/share/scvim/vim
cp bin/* $PKG/usr/bin
cp -r ftplugin $PKG/usr/share/scvim/vim # copy this and the 2 following to
cp -r indent $PKG/usr/share/scvim/vim # the vim runtimepath
cp -r syntax $PKG/usr/share/scvim/vim # any idea where this might be globally?
cp scvimrc $PKG/usr/share/scvim
cp -r scclasses $PKG/usr/share/SuperCollider/Extensions/scvim
cd -
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
@ -76,6 +89,11 @@ cp -a AUTHORS COPYING "README LINUX" VERSION $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
if [ "${CAPS:-yes}" = "yes" ]; then
echo "setcap cap_ipc_lock,cap_sys_nice=ep /usr/bin/sclang" >> $PKG/install/doinst.sh
echo "setcap cap_ipc_lock,cap_sys_nice=ep /usr/bin/scsynth" >> $PKG/install/doinst.sh
echo "setcap cap_ipc_lock,cap_sys_nice=ep /usr/bin/scvim" >> $PKG/install/doinst.sh
fi
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG

View file

@ -1,12 +1,12 @@
PRGNAM="SuperCollider"
VERSION="3.4.3"
VERSION="3.4.4"
HOMEPAGE="http://supercollider.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/supercollider/SuperCollider-3.4.3-Source-linux.tar.gz \
DOWNLOAD="http://downloads.sourceforge.net/supercollider/SuperCollider-3.4.4-Source-linux.tar.gz \
http://downloads.sourceforge.net/swingosc/SwingOSC-0.65.zip"
MD5SUM="a7d5371c01181b25e476c0e5c5dfe0b6 \
MD5SUM="0277d4a76268d2c534c68168bb2dedae \
6c284f505525dff8462267958479ed1a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Felix Pfeifer"
EMAIL="pfeifer[dot]felix[at]googlemail[dot]com"
APPROVED="Niels Horn"
APPROVED="dsomero"