mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 04:05:12 +08:00
27 lines
549 B
Bash
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
|
|
}
|