summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author Marcel Saegebarth <marc@mos6581.de>2015-11-05 00:30:14 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-11-05 00:45:20 +0700
commit1b8f1b45f0cc219a58134a166bce172da789d54b (patch)
tree7c8781f19b6b419cd375bdd3022f5e29dc2f573e /development
parent4fecfb38f80b6b9ed817cc73f60f0b21b7048160 (diff)
downloadslackbuilds-1b8f1b45f0cc219a58134a166bce172da789d54b.tar.gz
slackbuilds-1b8f1b45f0cc219a58134a166bce172da789d54b.tar.xz
development/portaudio: Updated for version v19_20140130.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/portaudio/README9
-rw-r--r--development/portaudio/portaudio.SlackBuild60
-rw-r--r--development/portaudio/portaudio.info10
-rw-r--r--development/portaudio/slack-desc12
4 files changed, 47 insertions, 44 deletions
diff --git a/development/portaudio/README b/development/portaudio/README
index 7c5c15c44f..ccd250fc15 100644
--- a/development/portaudio/README
+++ b/development/portaudio/README
@@ -1,2 +1,7 @@
-PortAudio is a portable API for audio I/O. It allows people writing audio
-programs to easily access the audio devices.
+PortAudio provides a very simple API for recording and/or playing
+sound using a simple callback function or a blocking read/write
+interface. Example programs are included that play sine waves,
+process audio input (guitar fuzz), record and playback audio, list
+available audio devices, etc.
+
+Optional dependencies: jack-audio-connection-kit
diff --git a/development/portaudio/portaudio.SlackBuild b/development/portaudio/portaudio.SlackBuild
index 8624f6a782..b6091dcb64 100644
--- a/development/portaudio/portaudio.SlackBuild
+++ b/development/portaudio/portaudio.SlackBuild
@@ -1,36 +1,36 @@
#!/bin/sh
-# Slackware build script for PortAudio.
+# Slackware build script for "PortAudio".
#
-# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it>
+# Copyright 2009-2015 Marco Bonetti <sid77@slackware.it>
+# Copyright 2015 Marco Bonetti <marc@mos6581.de>
# All rights reserved.
#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=portaudio
-VERSION=${VERSION:-V19}
-BUILD=${BUILD:-2}
+SRCNAM=pa
+VERSION=${VERSION:-v19_20140130}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
-# eek!
-SRCNAME="pa_stable_v19_20111121.tgz"
-
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
@@ -44,8 +44,6 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-DOCS="LICENSE.txt README.txt"
-
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
@@ -66,14 +64,14 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM
-tar xvf $CWD/$SRCNAME
+tar xvf $CWD/${SRCNAM}_stable_${VERSION}.tgz
cd $PRGNAM
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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -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 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
@@ -88,11 +86,11 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a LICENSE.txt README.configure.txt README.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/development/portaudio/portaudio.info b/development/portaudio/portaudio.info
index d788a1a853..d23c31ceb3 100644
--- a/development/portaudio/portaudio.info
+++ b/development/portaudio/portaudio.info
@@ -1,10 +1,10 @@
PRGNAM="portaudio"
-VERSION="V19"
+VERSION="v19_20140130"
HOMEPAGE="http://www.portaudio.com/"
-DOWNLOAD="http://www.portaudio.com/archives/pa_stable_v19_20111121.tgz"
-MD5SUM="25c85c1cc5e9e657486cbc299c6c035a"
+DOWNLOAD="http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz"
+MD5SUM="7f220406902af9dca009668e198cbd23"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
-MAINTAINER="Marco Bonetti"
-EMAIL="sid77@slackware.it"
+MAINTAINER="Marcel Saegebarth"
+EMAIL="marc@mos6581.de"
diff --git a/development/portaudio/slack-desc b/development/portaudio/slack-desc
index e588d42ffe..a09f85685e 100644
--- a/development/portaudio/slack-desc
+++ b/development/portaudio/slack-desc
@@ -6,13 +6,13 @@
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
-portaudio: PortAudio (portable cross-platform audio API)
-portaudio:
-portaudio: PortAudio is a portable API for audio I/O. It allows people writing
-portaudio: audio programs to easily access the audio devices.
-portaudio:
-portaudio:
+portaudio: PortAudio (cross-platform audio I/O library)
portaudio:
+portaudio: PortAudio provides a very simple API for recording and/or playing
+portaudio: sound using a simple callback function or a blocking read/write
+portaudio: interface. Example programs are included that play sine waves,
+portaudio: process audio input (guitar fuzz), record and playback audio, list
+portaudio: available audio devices, etc.
portaudio:
portaudio:
portaudio: