mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
24 lines
470 B
Bash
24 lines
470 B
Bash
pkgname=audiofile
|
|
pkgver=0.3.6
|
|
pkgrel=2
|
|
pkgdesc="Silicon Graphics Audio File Library"
|
|
arch=('x86_64')
|
|
url="http://www.68k.org/~michael/audiofile/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs' 'alsa-lib' 'flac')
|
|
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
|
|
}
|