mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 09:24:36 +08:00
22 lines
445 B
Bash
22 lines
445 B
Bash
|
pkgname=alsa-oss
|
||
|
pkgver=1.1.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="OSS compatibility library"
|
||
|
arch=('x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://www.alsa-project.org"
|
||
|
depends=('alsa-lib')
|
||
|
source=("ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2")
|
||
|
sha1sums=('808a00d35d2dd33ce67ee45716ee0f744ed22cb9')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|