summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-02-11 22:13:35 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-03-06 09:30:22 +0700
commitbaaab4d446213c91d0f4c9bc82325ab14a3ee14d (patch)
treee6927f9c4ac438513a803c3b1f2db35e47f4ebec /audio
parentb29ed81dad5858337e410e88c66d96a0bb396a60 (diff)
downloadslackbuilds-baaab4d446213c91d0f4c9bc82325ab14a3ee14d.tar.gz
slackbuilds-baaab4d446213c91d0f4c9bc82325ab14a3ee14d.tar.xz
audio/azr3: Removed (No longer build).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r--audio/azr3/README17
-rw-r--r--audio/azr3/azr3.SlackBuild88
-rw-r--r--audio/azr3/azr3.desktop8
-rw-r--r--audio/azr3/azr3.info10
-rw-r--r--audio/azr3/azr3.pngbin2135 -> 0 bytes
-rw-r--r--audio/azr3/doinst.sh3
-rw-r--r--audio/azr3/setcap.sh1
-rw-r--r--audio/azr3/slack-desc19
8 files changed, 0 insertions, 146 deletions
diff --git a/audio/azr3/README b/audio/azr3/README
deleted file mode 100644
index d131d7f593..0000000000
--- a/audio/azr3/README
+++ /dev/null
@@ -1,17 +0,0 @@
-azr3 (tonewheel organ simulator for jack-audio-connection-kit)
-
-azr3 is a JACK port of the free VST plugin AZR-3. It is a tonewheel
-organ with drawbars, distortion and rotating speakers.
-The original was written by Rumpelrausch Täips
-
-The organ has three sections, two polyphonic with 9 drawbars each and
-one monophonic bass section with 5 drawbars. The two polyphonic
-sections respond to events on MIDI channel 1 and 2, and an optional
-keyboard split function makes the bass section listen to the lower
-keys on channel 1.
-
-This package uses POSIX filesystem capabilities to execute with
-elevated privileges (required for realtime audio processing).
-This may be considered a security/stability risk. Please read
-http://www.slackbuilds.org/caps/ for more information. To disable
-capabilities, pass SETCAP=no to the script.
diff --git a/audio/azr3/azr3.SlackBuild b/audio/azr3/azr3.SlackBuild
deleted file mode 100644
index f1311d8ba6..0000000000
--- a/audio/azr3/azr3.SlackBuild
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for azr3
-
-# Written by B. Watson (yalhcru@gmail.com)
-
-# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
-
-PRGNAM=azr3
-VERSION=${VERSION:-1.2.3}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-TARNAME=$PRGNAM-jack
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $TARNAME-$VERSION
-tar xvf $CWD/$TARNAME-$VERSION.tar.bz2
-cd $TARNAME-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-make all install \
- CFLAGS="$SLKCFLAGS" \
- prefix=/usr \
- libdir=/usr/lib$LIBDIRSUFFIX \
- mandir=/usr/man \
- pkgdocdir=/usr/doc/$PRGNAM-$VERSION \
- DESTDIR=$PKG
-strip $PKG/usr/bin/$PRGNAM
-
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-# .desktop file written for this SlackBuild
-mkdir -p $PKG/usr/share/applications
-cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
-
-# icon is a small piece gimped out of panelfx.png
-mkdir -p $PKG/usr/share/pixmaps
-cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-if [ "${SETCAP:-yes}" = "yes" ]; then
- cat $CWD/setcap.sh >> $PKG/install/doinst.sh
- chown root:audio $PKG/usr/bin/$PRGNAM
- chmod 0750 $PKG/usr/bin/$PRGNAM
-fi
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/audio/azr3/azr3.desktop b/audio/azr3/azr3.desktop
deleted file mode 100644
index 63e1e420b8..0000000000
--- a/audio/azr3/azr3.desktop
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=AZR-3
-Comment=Tonewheel Organ for JACK
-Exec=azr3
-Icon=azr3
-Terminal=false
-Type=Application
-Categories=AudioVideo;Audio;
diff --git a/audio/azr3/azr3.info b/audio/azr3/azr3.info
deleted file mode 100644
index ee8ed868f3..0000000000
--- a/audio/azr3/azr3.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="azr3"
-VERSION="1.2.3"
-HOMEPAGE="http://ll-plugins.nongnu.org/azr3/"
-DOWNLOAD="http://download.savannah.nongnu.org/releases-noredirect/ll-plugins/azr3-jack-1.2.3.tar.bz2"
-MD5SUM="aa71715e5873aea724713be5970ebfbc"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="jack-audio-connection-kit lash"
-MAINTAINER="B. Watson"
-EMAIL="yalhcru@gmail.com"
diff --git a/audio/azr3/azr3.png b/audio/azr3/azr3.png
deleted file mode 100644
index c9b360e255..0000000000
--- a/audio/azr3/azr3.png
+++ /dev/null
Binary files differ
diff --git a/audio/azr3/doinst.sh b/audio/azr3/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/audio/azr3/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/audio/azr3/setcap.sh b/audio/azr3/setcap.sh
deleted file mode 100644
index 012b99e358..0000000000
--- a/audio/azr3/setcap.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ -x /sbin/setcap ] && /sbin/setcap cap_ipc_lock,cap_sys_nice=ep usr/bin/azr3
diff --git a/audio/azr3/slack-desc b/audio/azr3/slack-desc
deleted file mode 100644
index 8bb331f95d..0000000000
--- a/audio/azr3/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-azr3: azr3 (tonewheel organ simulator for jack-audio-connection-kit)
-azr3:
-azr3: azr3 is a JACK port of the free VST plugin AZR-3. It is a tonewheel
-azr3: organ with drawbars, distortion and rotating speakers. The original
-azr3: was written by Rumpelrausch Täips
-azr3:
-azr3: The organ has three sections, two polyphonic with 9 drawbars each
-azr3: and one monophonic bass section with 5 drawbars. The two polyphonic
-azr3: sections respond to events on MIDI channel 1 and 2, and an optional
-azr3: keyboard split function makes the bass section listen to the lower
-azr3: keys on channel 1.