mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
799 B
Bash
26 lines
799 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Based on 'portaudio' package - Eric Belanger <eric@archlinux.org>
|
||
|
# Last/Most-Recent Contributor: Darwin Bautista <djclue917@gmail.com>
|
||
|
# Maintainer: Bob Finch <w9ya@qrparci.net>
|
||
|
|
||
|
pkgname=portaudio
|
||
|
pkgver=19_20071207
|
||
|
pkgrel=2
|
||
|
pkgdesc="A free, cross-platform, open source, audio I/O library"
|
||
|
url="http://www.portaudio.com/"
|
||
|
source=(http://www.portaudio.com/archives/pa_stable_v$pkgver.tar.gz)
|
||
|
depends=('jack-audio-connection-kit')
|
||
|
options=(!libtool)
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('custom')
|
||
|
md5sums=('d2943e4469834b25afe62cc51adc025f')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
|
||
|
install -D -m644 LICENSE.txt $startdir/pkg/usr/share/licenses/$pkgname/LICENSE.txt
|
||
|
}
|