mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:07:14 +08:00
31 lines
700 B
Bash
31 lines
700 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=audiofile
|
|
pkgver=0.3.4
|
|
pkgrel=1
|
|
pkgdesc="Silicon Graphics Audio File Library"
|
|
arch=('i686' '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=('2ed06d64ee552a2ce490f54351b86ccd')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|