mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
audio/snd: Updated for version 16.7.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
ab52905a52
commit
83f2934b5d
4 changed files with 21 additions and 12 deletions
|
@ -10,3 +10,5 @@ these dependencies can now be the preferred defaults for Snd.
|
|||
|
||||
OpenGL rendering of spectrograms under Motif can also enabled by
|
||||
passing "--with-gl" to configure in snd.SlackBuild.
|
||||
|
||||
https://ccrma.stanford.edu/software/snd/
|
||||
|
|
|
@ -15,3 +15,5 @@ snd: be run sans GUI as a scripting engine, and more.
|
|||
snd:
|
||||
snd: https://ccrma.stanford.edu/software/snd/
|
||||
snd:
|
||||
snd:
|
||||
snd:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SlackBuild for Snd, 15 June 2016
|
||||
# Arthur W. Green <lynx@panix.com>
|
||||
# SlackBuild for Snd, 22 August 2016
|
||||
# Arthur W. Green <awg@posteo.us>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification,
|
||||
|
@ -26,13 +26,13 @@
|
|||
## in the Snd source distribution for more on this.
|
||||
|
||||
PRGNAM=snd
|
||||
VERSION=${VERSION:-16.6}
|
||||
VERSION=${VERSION:-16.7}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -43,8 +43,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -66,7 +66,11 @@ rm -rf $PRGNAM-$VERSION
|
|||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . -exec chmod -R u+w,go-w,a+rX-st {} \;
|
||||
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 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -93,12 +97,13 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
# documentation.
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/usr/doc/$PRGNAM-$VERSION/pix
|
||||
cp -a COPYING README.Snd *.html $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a pix/*.png $PKG/usr/doc/$PRGNAM-$VERSION/pix
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
# emacs support.
|
||||
# emacs mode.
|
||||
install -D -m 0644 inf-snd.el $PKG/usr/share/emacs/site-lisp/inf-snd.el
|
||||
# desktop file and menu icon.
|
||||
install -D -m 0644 $CWD/snd.desktop $PKG/usr/share/applications/snd.desktop
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="snd"
|
||||
VERSION="16.6"
|
||||
VERSION="16.7"
|
||||
HOMEPAGE="https://ccrma.stanford.edu/software/snd/"
|
||||
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-16.6.tar.gz"
|
||||
MD5SUM="97c0f458b8bd7e5ab927a073eac43e55"
|
||||
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-16.7.tar.gz"
|
||||
MD5SUM="0c2afc3fa0962f8866c05948daff55a6"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Arthur W. Green"
|
||||
EMAIL="lynx@panix.com"
|
||||
EMAIL="awg@posteo.us"
|
||||
|
|
Loading…
Reference in a new issue