diff options
author | Arthur W. Green <awg@posteo.us> | 2016-10-02 23:31:21 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-10-02 23:31:21 +0700 |
commit | 909cfae0a46996599f5f126aae3195da9fdf5741 (patch) | |
tree | 5d5a49f3a045558fbdd7f39ae5af2972371efbda /audio/snd | |
parent | 8340b68795d35f9fdac4b19762732940e55a4216 (diff) | |
download | slackbuilds-909cfae0a46996599f5f126aae3195da9fdf5741.tar.gz |
audio/snd: Updated for version 16.8.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/snd')
-rw-r--r-- | audio/snd/README | 9 | ||||
-rw-r--r-- | audio/snd/snd.SlackBuild | 9 | ||||
-rw-r--r-- | audio/snd/snd.info | 6 |
3 files changed, 14 insertions, 10 deletions
diff --git a/audio/snd/README b/audio/snd/README index 04069131a6..9c6b9e1bc6 100644 --- a/audio/snd/README +++ b/audio/snd/README @@ -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 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. -OpenGL rendering of spectrograms under Motif can also enabled by -passing "--with-gl" to configure in snd.SlackBuild. - -https://ccrma.stanford.edu/software/snd/ +OpenGL rendering of spectrograms under Motif can be enabled by setting +OPENGL=yes in the environment you run snd.SlackBuild. Since this is +not appropriate for all configurations, it is disabled by default. diff --git a/audio/snd/snd.SlackBuild b/audio/snd/snd.SlackBuild index d74d7a9009..f516e32169 100644 --- a/audio/snd/snd.SlackBuild +++ b/audio/snd/snd.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# SlackBuild for Snd, 22 August 2016 +# SlackBuild for Snd, 1 October 2016 # Arthur W. Green <awg@posteo.us> # All rights reserved. # @@ -26,7 +26,7 @@ ## in the Snd source distribution for more on this. PRGNAM=snd -VERSION=${VERSION:-16.7} +VERSION=${VERSION:-16.8} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -57,6 +57,10 @@ else LIBDIRSUFFIX="" fi +if [ "${OPENGL:-no}" = "yes" ]; then + OPENGL="--with-gl" +fi + set -e rm -rf $PKG @@ -83,6 +87,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-s7 \ --with-alsa \ --with-motif \ + $OPENGL \ --with-fftw \ --with-gsl \ --with-doc-dir=/usr/doc/$PRGNAM-$VERSION \ diff --git a/audio/snd/snd.info b/audio/snd/snd.info index 8b95c2036d..36307875a3 100644 --- a/audio/snd/snd.info +++ b/audio/snd/snd.info @@ -1,8 +1,8 @@ PRGNAM="snd" -VERSION="16.7" +VERSION="16.8" HOMEPAGE="https://ccrma.stanford.edu/software/snd/" -DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-16.7.tar.gz" -MD5SUM="0c2afc3fa0962f8866c05948daff55a6" +DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-16.8.tar.gz" +MD5SUM="914d7b6fef9f97c1a3b8fef20dd19f6a" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |