2012-08-26 16:14:51 +00:00
|
|
|
# $Id: PKGBUILD 165577 2012-08-25 16:01:55Z schiv $
|
2011-12-05 19:01:04 +00:00
|
|
|
# Maintainer: Ray Rashif <schiv@archlinux.org>
|
|
|
|
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
|
2012-08-26 16:14:51 +00:00
|
|
|
# Contributor: see .contrib
|
2011-12-05 19:01:04 +00:00
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - build with pulseaudio as sound server, not jack (x86 asm)
|
|
|
|
|
|
|
|
pkgname=snd
|
2015-06-10 00:07:59 +00:00
|
|
|
pkgver=15.6
|
2014-01-02 09:58:46 +00:00
|
|
|
pkgrel=1
|
2011-12-05 19:01:04 +00:00
|
|
|
pkgdesc="An advanced sound editor"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://ccrma.stanford.edu/software/snd/"
|
2014-01-02 09:58:46 +00:00
|
|
|
license=('custom:free')
|
2012-08-26 16:14:51 +00:00
|
|
|
depends=('pulseaudio' 'gamin' 'gsl' 'fftw' 'gtk2' 'libmpc')
|
|
|
|
makedepends=('ladspa' 'wavpack' 'flac' 'speex' 'gmp'
|
|
|
|
'timidity++' 'mpg123' 'vorbis-tools')
|
|
|
|
optdepends=('wavpack' 'flac' 'speex' 'mpg123'
|
|
|
|
'timidity++' 'vorbis-tools')
|
2014-01-02 09:58:46 +00:00
|
|
|
source=("ftp://ccrma-ftp.stanford.edu/pub/Lisp/$pkgname-$pkgver.tar.gz")
|
2015-06-10 00:07:59 +00:00
|
|
|
md5sums=('25344a581c521a8359ceeffc95e2fe4c')
|
2011-12-05 19:01:04 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
|
2012-08-26 16:14:51 +00:00
|
|
|
# execstack is probably due to gmp; this is here just for a reminder
|
2013-02-10 20:14:07 +00:00
|
|
|
LDFLAGS+=" -Wl,-z,noexecstack"
|
2012-08-26 16:14:51 +00:00
|
|
|
|
2011-12-05 19:01:04 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-alsa \
|
2012-08-26 16:14:51 +00:00
|
|
|
--with-pulseaudio \
|
|
|
|
--with-gtk \
|
|
|
|
--with-ladspa \
|
|
|
|
--with-gmp
|
2011-12-05 19:01:04 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
|
|
|
|
make prefix="$pkgdir/usr" install
|
|
|
|
|
|
|
|
install -Dm644 COPYING \
|
|
|
|
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|