summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2021-12-09 15:10:33 -0500
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2021-12-10 08:37:41 +0700
commitc25c9767b93ff55135f70b0d4305a023dd00bb3a (patch)
treefdc95482a11c4ca0e23710f7903bc553c3dd2b9a /audio
parent712a9ce6b7945759018eb3a9c8668b35ee5c96d8 (diff)
downloadslackbuilds-c25c9767b93ff55135f70b0d4305a023dd00bb3a.tar.gz
slackbuilds-c25c9767b93ff55135f70b0d4305a023dd00bb3a.tar.xz
audio/creox4: Removed (requires KDE4, use guitarix instead).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r--audio/creox4/README13
-rw-r--r--audio/creox4/creox4.SlackBuild104
-rw-r--r--audio/creox4/creox4.info10
-rw-r--r--audio/creox4/doinst.sh9
-rw-r--r--audio/creox4/setcap.sh1
-rw-r--r--audio/creox4/slack-desc19
6 files changed, 0 insertions, 156 deletions
diff --git a/audio/creox4/README b/audio/creox4/README
deleted file mode 100644
index 19b4326725..0000000000
--- a/audio/creox4/README
+++ /dev/null
@@ -1,13 +0,0 @@
-creox4 (guitar/etc effects for JACK)
-
-Creox is a real-time sound processor. You can plug your electric
-guitar or any other musical instrument directly to the PC's sound card
-and start experimenting with various sound effects. Creox has a nice
-user-friendly GUI, a preset support, a low-latency DSP engine and each
-effect parameter can be altered "on the fly".
-
-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/creox4/creox4.SlackBuild b/audio/creox4/creox4.SlackBuild
deleted file mode 100644
index e977bff6f9..0000000000
--- a/audio/creox4/creox4.SlackBuild
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for creox4
-
-# Written by B. Watson (yalhcru@gmail.com)
-
-# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=creox4
-VERSION=${VERSION:-20140309}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -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
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$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 {} \;
-
-mkdir -p build
-cd build
- cmake \
- -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLIB_SUFFIX=${LIBDIRSUFFIX} \
- -DMAN_INSTALL_DIR=/usr/man \
- -DCMAKE_BUILD_TYPE=Release ..
- make
- make install/strip DESTDIR=$PKG
-cd ..
-
-# hate when the binary name is different from the package name.
-mv $PKG/usr/bin/creox $PKG/usr/bin/$PRGNAM
-ln -s $PRGNAM $PKG/usr/bin/creox
-
-# nothing useful here anyway, just the same paragraph from README
-rm -rf $PKG/usr/share/doc
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS BUGS COPYING ChangeLog README TODO \
- $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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-# Only add capability stuff if not disabled:
-if [ "${SETCAP:-yes}" = "yes" ]; then
- cat $CWD/setcap.sh >> $PKG/install/doinst.sh
- # Only allow execution by audio group
- 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
diff --git a/audio/creox4/creox4.info b/audio/creox4/creox4.info
deleted file mode 100644
index 53abbb7557..0000000000
--- a/audio/creox4/creox4.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="creox4"
-VERSION="20140309"
-HOMEPAGE="https://github.com/laudrup/Creox4"
-DOWNLOAD="https://slackware.uk/~urchlay/src/creox4-20140309.tar.gz"
-MD5SUM="68783d31cca9358e1e26a95c76f5cfe9"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="jack"
-MAINTAINER="B. Watson"
-EMAIL="yalhcru@gmail.com"
diff --git a/audio/creox4/doinst.sh b/audio/creox4/doinst.sh
deleted file mode 100644
index 65c7e2eeb9..0000000000
--- a/audio/creox4/doinst.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
diff --git a/audio/creox4/setcap.sh b/audio/creox4/setcap.sh
deleted file mode 100644
index ca9e22ee03..0000000000
--- a/audio/creox4/setcap.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ -x /sbin/setcap ] && /sbin/setcap cap_ipc_lock,cap_sys_nice=ep usr/bin/creox4
diff --git a/audio/creox4/slack-desc b/audio/creox4/slack-desc
deleted file mode 100644
index d50b232b00..0000000000
--- a/audio/creox4/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------------------------------------------------------|
-creox4: creox4 (guitar/etc effects for JACK)
-creox4:
-creox4: Creox is a real-time sound processor. You can plug your electric
-creox4: guitar or any other musical instrument directly to the PC's sound
-creox4: card and start experimenting with various sound effects. Creox has
-creox4: a nice user-friendly GUI, a preset support, a low-latency DSP engine
-creox4: and each effect parameter can be altered "on the fly".
-creox4:
-creox4:
-creox4:
-creox4: