core/audiofile/PKGBUILD
2013-11-13 23:24:01 +00:00

27 lines
549 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
pkgname=audiofile
pkgver=0.3.6
pkgrel=1
pkgdesc="Silicon Graphics Audio File Library"
arch=('x86_64')
url="http://www.68k.org/~michael/audiofile/"
license=('LGPL')
depends=('gcc-libs' 'alsa-lib')
options=('!libtool')
source=("http://audiofile.68k.org/$pkgname-$pkgver.tar.gz")
md5sums=('2731d79bec0acef3d30d2fc86b0b72fd')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}