mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
audio/snd: Updated for version 17.8.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
4e70a72643
commit
d23dbd0255
3 changed files with 19 additions and 12 deletions
|
@ -3,12 +3,13 @@ programmable, supports a variety of audio and sample file formats,
|
|||
includes a complete implementation of Common Lisp Music (CLM), can be
|
||||
run sans GUI as a scripting engine, and more.
|
||||
|
||||
This SlackBuild configures Snd to use Scheme (s7), ALSA, and Motif, as
|
||||
these options are well-supported by Snd's author and extensively tested.
|
||||
But if you prefer GTK3 to Motif, then enable it like so:
|
||||
This SlackBuild configures Snd to use Scheme (s7), ALSA, and Motif.
|
||||
|
||||
If you prefer Pulse Audio to ALSA, then begin the build like so:
|
||||
PULSEAUDIO=yes sh ./snd.SlackBuild
|
||||
|
||||
Using GTK3 instead of Motif is also easy.
|
||||
GTK=yes sh ./snd.SlackBuild
|
||||
|
||||
Support for OpenGL spectrogram rendering can also be enabled:
|
||||
To enable support for OpenGL spectrogram rendering:
|
||||
OPENGL=yes sh ./snd.SlackBuild
|
||||
This option is not appropriate for all configurations, so it is disabled
|
||||
by default.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SlackBuild for Snd, 24 September 2017
|
||||
# SlackBuild for Snd, 27 October 2017
|
||||
# AW Green <awg@posteo.us>
|
||||
# All rights reserved.
|
||||
#
|
||||
|
@ -21,7 +21,7 @@
|
|||
## in the Snd source distribution.
|
||||
|
||||
PRGNAM=snd
|
||||
VERSION=${VERSION:-17.7}
|
||||
VERSION=${VERSION:-17.8}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -52,6 +52,12 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
if [ "${PULSEAUDIO:-no}" = "yes" ]; then
|
||||
AUDSYS="--with-pulseaudio"
|
||||
else
|
||||
AUDSYS="--with-alsa"
|
||||
fi
|
||||
|
||||
if [ "${GTK:-no}" = "yes" ]; then
|
||||
GUITK="--with-gtk"
|
||||
else
|
||||
|
@ -86,7 +92,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--with-s7 \
|
||||
--with-alsa \
|
||||
$AUDSYS \
|
||||
$GUITK \
|
||||
$OPENGL \
|
||||
--with-fftw \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="snd"
|
||||
VERSION="17.7"
|
||||
VERSION="17.8"
|
||||
HOMEPAGE="https://ccrma.stanford.edu/software/snd/"
|
||||
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-17.7.tar.gz"
|
||||
MD5SUM="8cd826b0458a1c5f5916639e5d3eb9bd"
|
||||
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-17.8.tar.gz"
|
||||
MD5SUM="cf22ac80e116dab68ef098ab02e1ef80"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue