mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
522 B
Bash
20 lines
522 B
Bash
# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
|
|
|
|
pkgname=audiofile
|
|
pkgver=0.2.6
|
|
pkgrel=4
|
|
pkgdesc="Silicon Graphics Audio File Library"
|
|
arch=('arm')
|
|
url="http://www.68k.org/~michael/audiofile/"
|
|
license=('LGPL' 'GPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://www.68k.org/~michael/audiofile/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('9c1049876cd51c0f1b12c2886cce4d42')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|