mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 00:38:27 +08:00
26 lines
501 B
Bash
26 lines
501 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=alsa-oss
|
|
pkgver=1.0.25
|
|
pkgrel=7
|
|
pkgdesc="OSS compatibility library"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://www.alsa-project.org"
|
|
options=(!libtool)
|
|
depends=('alsa-lib')
|
|
source=("ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('922ea177db15c72f1b5037181c73f934')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|