mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:47:14 +08:00
23 lines
690 B
Bash
23 lines
690 B
Bash
# $Id: PKGBUILD 31371 2009-03-26 05:31:25Z eric $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
pkgname=audiofile
|
|
pkgver=0.2.6
|
|
pkgrel=4
|
|
pkgdesc="Silicon Graphics Audio File Library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.68k.org/~michael/audiofile/"
|
|
license=('LGPL' 'GPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://www.68k.org/~michael/audiofile/audiofile-$pkgver.tar.gz
|
|
aclocal-fixes.patch)
|
|
md5sums=('9c1049876cd51c0f1b12c2886cce4d42' 'a4c04c757d6b0a049c6fce6b64e9a17b')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -Np0 -i ${srcdir}/aclocal-fixes.patch || return 1
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|