mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:47:17 +08:00
28 lines
745 B
Bash
28 lines
745 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>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=alsa-oss
|
|
pkgver=1.0.17
|
|
pkgrel=1
|
|
pkgdesc="OSS compatibility library"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://www.alsa-project.org"
|
|
options=(!libtool)
|
|
depends=('glibc' 'alsa-lib>=1.0.17a')
|
|
source=(ftp://ftp.alsa-project.org/pub/oss-lib/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('1b1850c2fc91476a73d50f537cbd402f')
|