blob: 411f1043769daf460cc049242c3ed86aff0504aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 22287 2010-07-20 20:56:06Z mherych $
# 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=3
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=$pkgdir install
install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
}
|