PKGBUILDs/extra/snd/PKGBUILD
2009-10-09 21:23:22 -05:00

25 lines
823 B
Bash

# $Id: PKGBUILD 16115 2008-10-21 11:22:17Z juergen $
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=snd
pkgver=10.1
pkgrel=1
pkgdesc="Snd is the emacs of sound editor"
arch=('i686' 'x86_64')
license=('custom')
depends=('guile>=1.8.1' 'lesstif' 'fam' 'libxpm' 'libtool>=2.2')
url="http://ccrma.stanford.edu/software/snd/"
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('b4cdaf485b038191ebcc3e8097058930')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
./configure --prefix=/usr --without-gsl --without-fftw
make || return 1
make prefix=${startdir}/pkg/usr install
install -D -m644 COPYING $startdir/pkg/usr/share/licenses/$pkgname/COPYING
}