diff options
author | root <root@rshg054.dnsready.net> | 2012-02-25 23:15:06 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-25 23:15:06 +0000 |
commit | e4a5730eb358cb0d78bc022204ddccac068c2bf2 (patch) | |
tree | 8dc9d2ac6b1313cb68be1a6c8b51500397f8b225 /community/portaudio/PKGBUILD | |
parent | 299e917c17619f800f0c21cf43209065b608223f (diff) |
Sat Feb 25 23:15:06 UTC 2012
Diffstat (limited to 'community/portaudio/PKGBUILD')
-rw-r--r-- | community/portaudio/PKGBUILD | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/community/portaudio/PKGBUILD b/community/portaudio/PKGBUILD index 1872b9457..6c726e662 100644 --- a/community/portaudio/PKGBUILD +++ b/community/portaudio/PKGBUILD @@ -1,28 +1,31 @@ -# $Id: PKGBUILD 55258 2011-09-07 18:41:32Z ebelanger $ -# Based on 'portaudio' package - Eric Belanger <eric@archlinux.org> -# Last/Most-Recent Contributor: Darwin Bautista <djclue917@gmail.com> -# Maintainer: Bob Finch <w9ya@qrparci.net> +# $Id: PKGBUILD 66382 2012-02-24 12:03:33Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Eric Belanger <eric@archlinux.org> +# Contributor: Darwin Bautista <djclue917@gmail.com> +# Contributor: Bob Finch <w9ya@qrparci.net> pkgname=portaudio -pkgver=19_20110326 +pkgver=19_20111121 pkgrel=1 -pkgdesc="A free, cross-platform, open source, audio I/O library" +pkgdesc='A free, cross-platform, open source, audio I/O library.' arch=('i686' 'x86_64') -url="http://www.portaudio.com/" +url='http://www.portaudio.com/' license=('custom') depends=('jack') options=('!libtool') -source=(http://www.portaudio.com/archives/pa_stable_v$pkgver.tgz) -md5sums=('8f266ce03638419ef46e4efcb0fabde6') +source=("http://www.portaudio.com/archives/pa_stable_v$pkgver.tgz") +md5sums=('25c85c1cc5e9e657486cbc299c6c035a') build() { cd "$srcdir/$pkgname" + ./configure --prefix=/usr make } package() { cd "$srcdir/$pkgname" + make DESTDIR="$pkgdir" install - install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" + install -Dm0644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" } |