audio/vocoder: Added (standalone JACK vocoder effect).

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
B. Watson 2012-12-16 16:42:46 +01:00 committed by Matteo Bernardini
parent effec6d0ff
commit 7d3cc5499b
9 changed files with 176 additions and 0 deletions

14
audio/vocoder/README Normal file
View file

@ -0,0 +1,14 @@
vocoder (standalone JACK vocoder effect)
A vocoder is a sound effect that can make a human voice sound
synthetic. It is often used to speak like a robot, with a metallic and
monotonous voice.
This is a standalone JACK application. For a LADSPA version of the same
effect, see vocoder-ladspa.
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.

View file

@ -0,0 +1,22 @@
diff -Naur vocoder/src/output_jack.cpp vocoder.patched/src/output_jack.cpp
--- vocoder/src/output_jack.cpp 2009-05-25 17:56:46.000000000 -0400
+++ vocoder.patched/src/output_jack.cpp 2012-11-22 15:10:01.000000000 -0500
@@ -5,6 +5,7 @@
*/
// Includes /*fold00*/
+#include <unistd.h>
#include <iostream>
#include "output_jack.h"
diff -Naur vocoder/util/play_loop.cc vocoder.patched/util/play_loop.cc
--- vocoder/util/play_loop.cc 2009-03-07 05:42:17.000000000 -0500
+++ vocoder.patched/util/play_loop.cc 2012-11-22 15:09:10.000000000 -0500
@@ -5,6 +5,7 @@
*/
// Includes /*fold00*/
+#include <unistd.h>
#include <string.h>
#include <getopt.h>
#include <sndfile.h>

9
audio/vocoder/doinst.sh Normal file
View file

@ -0,0 +1,9 @@
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 usr/share/icons/hicolor >/dev/null 2>&1
fi
fi

2
audio/vocoder/setcap.sh Normal file
View file

@ -0,0 +1,2 @@
[ -x /sbin/setcap ] && /sbin/setcap cap_ipc_lock,cap_sys_nice=ep usr/bin/vocoder

19
audio/vocoder/slack-desc Normal file
View file

@ -0,0 +1,19 @@
# 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 ':'.
|-----handy-ruler------------------------------------------------------|
vocoder: vocoder (standalone JACK vocoder effect)
vocoder:
vocoder: A vocoder is a sound effect that can make a human voice sound
vocoder: synthetic. It is often used to speak like a robot, with a metallic
vocoder: and monotonous voice.
vocoder:
vocoder: homepage: http://www.sirlab.de/linux/descr_vocoder.html
vocoder:
vocoder:
vocoder:
vocoder:

View file

@ -0,0 +1,91 @@
#!/bin/bash
# Slackware build script for vocoder
# Written by B. Watson (yalhcru@gmail.com)
# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details.
PRGNAM=vocoder
VERSION=${VERSION:-0.29}
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
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM
tar xvf $CWD/$PRGNAM-jack-$VERSION.tar.gz
cd $PRGNAM
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# Add a couple missing #include <unistd.h>
patch -p1 < $CWD/compile_fix.diff
make
# manual install (no install target in Makefile)
mkdir -p $PKG/usr/bin
install -s -m0755 src/$PRGNAM $PKG/usr/bin/$PRGNAM
# icon made for this slackbuild, by crudely stitching together a generic Tux
# plus http://openclipart.org/detail/24414/old-style-microphone-by-boobaloo
mkdir -p $PKG/usr/share/pixmaps
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
# .desktop written for this slackbuild.
mkdir -p $PKG/usr/share/applications
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYRIGHT README $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:-tgz}

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Name=vocoder
GenericName=JACK Vocoder
Comment=Audio Effect
Exec=vocoder
Icon=vocoder
Categories=AudioVideo;X-Jack;Midi;X-MIDI;Audio;
Terminal=false
Type=Application

View file

@ -0,0 +1,10 @@
PRGNAM="vocoder"
VERSION="0.29"
HOMEPAGE="http://www.sirlab.de/linux/descr_vocoder.html"
DOWNLOAD="http://www.sirlab.de/linux/download/vocoder-jack-0.29.tar.gz"
MD5SUM="298f47a4bb42a12de1d28726a8fe8c07"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="jack-audio-connection-kit fltk"
MAINTAINER="B. Watson"
EMAIL="yalhcru@gmail.com"

BIN
audio/vocoder/vocoder.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB