mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
735 B
Bash
20 lines
735 B
Bash
# $Id: PKGBUILD 14090 2008-10-03 15:40:30Z tpowa $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
# Contributer: Jason Chu <jchu@xentac.net>
|
|
pkgname=sweep
|
|
pkgver=0.9.3
|
|
pkgrel=1
|
|
pkgdesc="Sound editing and mixing program"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
depends=('gtk2' 'libsamplerate' 'libmad' 'libvorbis' 'alsa-lib' 'speex')
|
|
source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
url="http://www.metadecks.org/software/sweep/"
|
|
|
|
build() {
|
|
cd $startdir/src/sweep-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr sysconfdir=$startdir/pkg/etc localstatedir=$startdir/pkg/var install
|
|
}
|
|
md5sums=('69e19bad2673f20e15224c0a5b5d4c85')
|