core/audiofile/PKGBUILD

21 lines
636 B
Bash
Raw Normal View History

2010-05-17 15:50:50 +08:00
# $Id: PKGBUILD 78833 2010-04-28 13:14:52Z jgc $
2010-03-14 23:48:48 +08:00
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=audiofile
2010-05-17 15:50:50 +08:00
pkgver=0.2.7
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="Silicon Graphics Audio File Library"
arch=('i686' 'x86_64')
url="http://www.68k.org/~michael/audiofile/"
2010-05-17 15:50:50 +08:00
license=('LGPL')
2010-03-14 23:48:48 +08:00
depends=('glibc')
options=('!libtool')
2010-05-17 15:50:50 +08:00
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2)
sha256sums=('61efd278627415b5468426fc9e52aef32ea0fdac12b56bcdd72734c2ece5945e')
2010-03-14 23:48:48 +08:00
build() {
2010-05-17 15:50:50 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
2010-03-14 23:48:48 +08:00
./configure --prefix=/usr || return 1
make || return 1
2010-05-17 15:50:50 +08:00
make DESTDIR="${pkgdir}" install || return 1
2010-03-14 23:48:48 +08:00
}