Browse Source
audio/snd: Updated for version 18.5.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
pull/47/head
awg
7 years ago
committed by
Willy Sudiarto Raharjo
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
3 changed files with
17 additions and
26 deletions
-
audio/snd/README
-
audio/snd/snd.SlackBuild
-
audio/snd/snd.info
|
|
|
@ -4,11 +4,7 @@ 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. |
|
|
|
|
|
|
|
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. |
|
|
|
But using GTK3 instead of Motif is also easy. |
|
|
|
GTK=yes sh ./snd.SlackBuild |
|
|
|
|
|
|
|
To enable support for OpenGL spectrogram rendering: |
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
#!/bin/sh |
|
|
|
|
|
|
|
# SlackBuild for Snd, 27 October 2017 |
|
|
|
# AW Green <awg@posteo.us> |
|
|
|
# SlackBuild for Snd, 16 July 2018 |
|
|
|
# awg <awg@cock.li> |
|
|
|
# All rights reserved. |
|
|
|
# |
|
|
|
# Permission to use, copy, modify, or distribute this software for any |
|
|
|
@ -21,7 +21,7 @@ |
|
|
|
## in the Snd source distribution. |
|
|
|
|
|
|
|
PRGNAM=snd |
|
|
|
VERSION=${VERSION:-17.8} |
|
|
|
VERSION=${VERSION:-18.5} |
|
|
|
BUILD=${BUILD:-1} |
|
|
|
TAG=${TAG:-_SBo} |
|
|
|
|
|
|
|
@ -52,20 +52,16 @@ else |
|
|
|
LIBDIRSUFFIX="" |
|
|
|
fi |
|
|
|
|
|
|
|
if [ "${PULSEAUDIO:-no}" = "yes" ]; then |
|
|
|
AUDSYS="--with-pulseaudio" |
|
|
|
else |
|
|
|
AUDSYS="--with-alsa" |
|
|
|
fi |
|
|
|
|
|
|
|
if [ "${GTK:-no}" = "yes" ]; then |
|
|
|
GUITK="--with-gtk" |
|
|
|
GUITK="with-gtk" |
|
|
|
else |
|
|
|
GUITK="--with-motif" |
|
|
|
GUITK="with-motif" |
|
|
|
fi |
|
|
|
|
|
|
|
if [ "${OPENGL}" = "yes" ]; then |
|
|
|
OPENGL="--with-gl" |
|
|
|
if [ "${OPENGL:-no}" = "yes" ]; then |
|
|
|
OPENGL="with-gl" |
|
|
|
else |
|
|
|
OPENGL="without-gl" |
|
|
|
fi |
|
|
|
|
|
|
|
set -e |
|
|
|
@ -92,9 +88,8 @@ CXXFLAGS="$SLKCFLAGS" \ |
|
|
|
--localstatedir=/var \ |
|
|
|
--mandir=/usr/man \ |
|
|
|
--with-s7 \ |
|
|
|
$AUDSYS \ |
|
|
|
$GUITK \ |
|
|
|
$OPENGL \ |
|
|
|
--$GUITK \ |
|
|
|
--$OPENGL \ |
|
|
|
--with-fftw \ |
|
|
|
--with-doc-dir=/usr/doc/$PRGNAM-$VERSION \ |
|
|
|
--build=$ARCH-slackware-linux |
|
|
|
|
|
|
|
@ -1,10 +1,10 @@ |
|
|
|
PRGNAM="snd" |
|
|
|
VERSION="17.8" |
|
|
|
VERSION="18.5" |
|
|
|
HOMEPAGE="https://ccrma.stanford.edu/software/snd/" |
|
|
|
DOWNLOAD="http://ponce.cc/slackware/sources/repo/snd-17.8.tar.gz" |
|
|
|
MD5SUM="cf22ac80e116dab68ef098ab02e1ef80" |
|
|
|
DOWNLOAD="ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-18.5.tar.gz" |
|
|
|
MD5SUM="306f44742e1b122feb5e21eb22e7d28c" |
|
|
|
DOWNLOAD_x86_64="" |
|
|
|
MD5SUM_x86_64="" |
|
|
|
REQUIRES="" |
|
|
|
MAINTAINER="AW Green" |
|
|
|
EMAIL="awg@posteo.us" |
|
|
|
MAINTAINER="awg" |
|
|
|
EMAIL="awg@cock.li" |