summaryrefslogtreecommitdiff
path: root/extra/snd
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-03 03:19:39 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-03 03:19:39 +0000
commitf72cb0ced39aca827b5269eba5455dbf846410e2 (patch)
tree7047d64bf11194dc5e44ed4f6765ffccb11676cf /extra/snd
parent3cbc40e327b77b23d48f55c76c0efde35a5dad16 (diff)
Fri Jan 3 03:17:00 UTC 2014
Diffstat (limited to 'extra/snd')
-rw-r--r--extra/snd/PKGBUILD22
-rw-r--r--extra/snd/type_error.patch12
2 files changed, 6 insertions, 28 deletions
diff --git a/extra/snd/PKGBUILD b/extra/snd/PKGBUILD
index aa68286a9..a08c7a03b 100644
--- a/extra/snd/PKGBUILD
+++ b/extra/snd/PKGBUILD
@@ -1,32 +1,22 @@
-# $Id: PKGBUILD 199037 2013-11-07 17:11:41Z schiv $
+# $Id: PKGBUILD 203030 2014-01-02 06:24:42Z schiv $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: see .contrib
pkgname=snd
-pkgver=14.1
-pkgrel=2
+pkgver=14.2
+pkgrel=1
pkgdesc="An advanced sound editor"
arch=('i686' 'x86_64')
url="http://ccrma.stanford.edu/software/snd/"
-license=('custom')
+license=('custom:free')
depends=('jack' 'gamin' 'gsl' 'fftw' 'gtk2' 'libmpc')
makedepends=('ladspa' 'wavpack' 'flac' 'speex' 'gmp'
'timidity++' 'mpg123' 'vorbis-tools')
optdepends=('wavpack' 'flac' 'speex' 'mpg123'
'timidity++' 'vorbis-tools')
-source=("ftp://ccrma-ftp.stanford.edu/pub/Lisp/$pkgname-$pkgver.tar.gz"
- 'type_error.patch')
-md5sums=('955ca19ca70ac0e4d03cd710516c0174'
- '9bfea0dccdfb5da1ba81e721672b11cc')
-
-prepare() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # fix incomplete type error
- # see http://www.mail-archive.com/cmdist@ccrma.stanford.edu/msg04241.html
- patch -Np1 -i "$srcdir/type_error.patch"
-}
+ source=("ftp://ccrma-ftp.stanford.edu/pub/Lisp/$pkgname-$pkgver.tar.gz")
+md5sums=('a442b98c75043bc8a4b9b50ba0c2b5b7')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/extra/snd/type_error.patch b/extra/snd/type_error.patch
deleted file mode 100644
index 1232c6e36..000000000
--- a/extra/snd/type_error.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -bur snd-14.1.orig/snd-ladspa.c snd-14.1/snd-ladspa.c
---- snd-14.1.orig/snd-ladspa.c 2013-10-28 16:07:53.260612114 +0800
-+++ snd-14.1/snd-ladspa.c 2013-10-28 16:11:18.792831983 +0800
-@@ -1191,7 +1191,7 @@
- if (descriptor->connect_port)
- descriptor->connect_port(XEN_TO_C_Ladspa_Handle(ptr),
- XEN_TO_C_ULONG(port),
-- double_to_float(samples->data, samples->length)
-+ double_to_float(mus_vct_data(samples), mus_vct_length(samples))
- );
- return(XEN_FALSE);
- }