mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added extra/snd
This commit is contained in:
parent
ca9fe7d128
commit
c6628d6572
1 changed files with 45 additions and 0 deletions
45
extra/snd/PKGBUILD
Normal file
45
extra/snd/PKGBUILD
Normal file
|
@ -0,0 +1,45 @@
|
|||
# $Id: PKGBUILD 139163 2011-09-30 13:55:54Z schiv $
|
||||
# Maintainer: Ray Rashif <schiv@archlinux.org>
|
||||
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
|
||||
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||||
# Contributor: dorphell <dorphell@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - build with pulseaudio as sound server, not jack (x86 asm)
|
||||
|
||||
plugrel=1
|
||||
|
||||
pkgname=snd
|
||||
pkgver=12.5
|
||||
pkgrel=1
|
||||
pkgdesc="An advanced sound editor"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://ccrma.stanford.edu/software/snd/"
|
||||
license=('custom')
|
||||
depends=('lesstif' 'pulseaudio' 'gamin' 'gsl' 'fftw')
|
||||
makedepends=('ladspa' 'wavpack' 'flac' 'speex' 'libxpm'
|
||||
'timidity++' 'mpg123' 'vorbis-tools' 'gmp')
|
||||
optdepends=('ladspa' 'wavpack' 'flac' 'speex'
|
||||
'timidity++' 'mpg123' 'vorbis-tools')
|
||||
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
|
||||
md5sums=('53bed2048fe9287f9a0e6a6d63536729')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--with-alsa \
|
||||
--with-pulseaudio
|
||||
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:
|
Loading…
Reference in a new issue