diff options
author | Pierre Cazenave <pwcazenave at gmail dot com> | 2010-05-11 22:53:09 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:53:09 +0200 |
commit | 3f2fb7a43bb100f04c8dd28effd3e9a6f059038a (patch) | |
tree | 638d1770322e076f3978f31d1f4673cf802d4d7e /audio | |
parent | 97538d8e35d91636909737416c0186a5ae7c4dc0 (diff) | |
download | slackbuilds-3f2fb7a43bb100f04c8dd28effd3e9a6f059038a.tar.gz |
audio/listener: Added to 12.1 repository
Diffstat (limited to 'audio')
-rw-r--r-- | audio/listener/README | 18 | ||||
-rw-r--r-- | audio/listener/doinst.sh | 14 | ||||
-rw-r--r-- | audio/listener/listener.SlackBuild | 77 | ||||
-rw-r--r-- | audio/listener/listener.info | 8 | ||||
-rw-r--r-- | audio/listener/slack-desc | 12 |
5 files changed, 129 insertions, 0 deletions
diff --git a/audio/listener/README b/audio/listener/README new file mode 100644 index 0000000000..5b9de02d68 --- /dev/null +++ b/audio/listener/README @@ -0,0 +1,18 @@ +This program listens for sound. If it detects any, it starts recording +automatically and also automatically stops when things become silent again. + +In order to use this, a few steps need to be completed first: + +1. Remove the line: filter = ./my_filter2.so.0.1 0 3000.0 1.0 + from /etc/listener.conf. + +2. Run setlistener (as an ordinary user), and use the + cursor keys on your keybord to move the "|" left and right until <silence> + appears in place of <SOUND!>. Make a note of the "Current detection level", + and modify the detect_level value in /etc/listener.conf to match. + +3. To start, run listener -f (to prevent it forking to the background. Omit -f + if you wish to fork). Output will be saved in the current directory as a + wav file by default. + +Requires libsndfile, available at SlackBuilds.org diff --git a/audio/listener/doinst.sh b/audio/listener/doinst.sh new file mode 100644 index 0000000000..eaf8852835 --- /dev/null +++ b/audio/listener/doinst.sh @@ -0,0 +1,14 @@ + config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/listener.conf.new diff --git a/audio/listener/listener.SlackBuild b/audio/listener/listener.SlackBuild new file mode 100644 index 0000000000..7473a26082 --- /dev/null +++ b/audio/listener/listener.SlackBuild @@ -0,0 +1,77 @@ +#!/bin/sh +# +# Slackware build script for listener. +# +# Distributed under the beerware licence: +# +# "THE BEER-WARE LICENSE" (Revision 42): +# pwcazenave <at> gmail <dot> com wrote this file. As long as you retain this +# notice you can do whatever you want with this stuff. If we meet some day, +# and you think this stuff is worth it, you can buy me a beer in return +# Pierre Cazenave +# +# Created 07/08/2008 +# + +PRGNAM=listener +VERSION=1.7.2 +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" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf listener-1.7.2 +tar -xvzf $CWD/$PRGNAM-${VERSION}.tgz || exit 1 +cd listener-1.7.2 || exit 1 +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 {} \; + +# make the destination directories for the Makefile, otherwise it keels over. +mkdir -p $PKG/{usr/bin,etc} + +# fix Makefile so install path to /usr/bin, not /bin +sed -i 's@(INSTALL_PREFIX)/bin@(INSTALL_PREFIX)/usr/bin@g' Makefile + +# fix listener.h hardcoded config file path +sed -i 's@/usr/local/etc/listener.conf@/etc/listener.conf@' listener.h + +# fix the documentation reference to the config file too +sed -i 's@/usr/local/etc/listener.conf@/etc/listener.conf@' manual.html + +make install INSTALL_PREFIX=$PKG + +find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + +# make the documentation directories and install the documentation +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +( cp -a license.txt manual.html $PKG/usr/doc/$PRGNAM-$VERSION ) +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; + +# don't clobber existing .conf files in /etc +mv $PKG/etc/listener.conf $PKG/etc/listener.conf.new + +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 diff --git a/audio/listener/listener.info b/audio/listener/listener.info new file mode 100644 index 0000000000..47a15635aa --- /dev/null +++ b/audio/listener/listener.info @@ -0,0 +1,8 @@ +PRGNAM="listener" +VERSION="1.7.2" +HOMEPAGE="http://www.vanheusden.com/listener/" +DOWNLOAD="http://www.vanheusden.com/listener/listener-1.7.2.tgz" +MD5SUM="8ad9c24c45c7d28aed606304a2bf80bf" +MAINTAINER="Pierre Cazenave" +EMAIL="pwcazenave <at> gmail <dot> com" +APPROVED="David Somero"
\ No newline at end of file diff --git a/audio/listener/slack-desc b/audio/listener/slack-desc new file mode 100644 index 0000000000..c820a09179 --- /dev/null +++ b/audio/listener/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +listener: listener (listens for sound. If detected, it starts recording) +listener: +listener: This program listens for sound. If it detects any, it starts +listener: recording automatically and also automatically stops when things +listener: become silent again. +listener: +listener: http://www.vanheusden.com/listener +listener: +listener: +listener: +listener:
\ No newline at end of file |