mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
audio/snd: Updated for version 16.8.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
8340b68795
commit
909cfae0a4
3 changed files with 14 additions and 10 deletions
|
@ -5,10 +5,9 @@ run sans GUI as a scripting engine, and more.
|
||||||
|
|
||||||
This SlackBuild configures Snd to use Scheme (s7), ALSA, and Motif, as
|
This SlackBuild configures Snd to use Scheme (s7), ALSA, and Motif, as
|
||||||
these are currently the best supported (and tested) options for Snd.
|
these are currently the best supported (and tested) options for Snd.
|
||||||
Slackare 14.2 includes Motif and the GNU Scientific Library (gsl), so
|
Slackware 14.2 includes Motif and the GNU Scientific Library (gsl), so
|
||||||
these dependencies can now be the preferred defaults for Snd.
|
these dependencies can now be the preferred defaults for Snd.
|
||||||
|
|
||||||
OpenGL rendering of spectrograms under Motif can also enabled by
|
OpenGL rendering of spectrograms under Motif can be enabled by setting
|
||||||
passing "--with-gl" to configure in snd.SlackBuild.
|
OPENGL=yes in the environment you run snd.SlackBuild. Since this is
|
||||||
|
not appropriate for all configurations, it is disabled by default.
|
||||||
https://ccrma.stanford.edu/software/snd/
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# SlackBuild for Snd, 22 August 2016
|
# SlackBuild for Snd, 1 October 2016
|
||||||
# Arthur W. Green <awg@posteo.us>
|
# Arthur W. Green <awg@posteo.us>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
## in the Snd source distribution for more on this.
|
## in the Snd source distribution for more on this.
|
||||||
|
|
||||||
PRGNAM=snd
|
PRGNAM=snd
|
||||||
VERSION=${VERSION:-16.7}
|
VERSION=${VERSION:-16.8}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -57,6 +57,10 @@ else
|
||||||
LIBDIRSUFFIX=""
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${OPENGL:-no}" = "yes" ]; then
|
||||||
|
OPENGL="--with-gl"
|
||||||
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
|
@ -83,6 +87,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
||||||
--with-s7 \
|
--with-s7 \
|
||||||
--with-alsa \
|
--with-alsa \
|
||||||
--with-motif \
|
--with-motif \
|
||||||
|
$OPENGL \
|
||||||
--with-fftw \
|
--with-fftw \
|
||||||
--with-gsl \
|
--with-gsl \
|
||||||
--with-doc-dir=/usr/doc/$PRGNAM-$VERSION \
|
--with-doc-dir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="snd"
|
PRGNAM="snd"
|
||||||
VERSION="16.7"
|
VERSION="16.8"
|
||||||
HOMEPAGE="https://ccrma.stanford.edu/software/snd/"
|
HOMEPAGE="https://ccrma.stanford.edu/software/snd/"
|
||||||
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-16.7.tar.gz"
|
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-16.8.tar.gz"
|
||||||
MD5SUM="0c2afc3fa0962f8866c05948daff55a6"
|
MD5SUM="914d7b6fef9f97c1a3b8fef20dd19f6a"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
|
|
Loading…
Reference in a new issue