mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
32 lines
753 B
Bash
32 lines
753 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: Dorphell
|
|
# Contributor: Travis Willard <travisw@wmpub.ca>
|
|
# Contributor: Arkamririon <Arkamririon@gmx.net>
|
|
|
|
pkgname=freealut
|
|
pkgver=1.1.0
|
|
pkgrel=5
|
|
pkgdesc="OpenAL Utility Toolkit (ALUT)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.openal.org"
|
|
license=("LGPL")
|
|
depends=('openal>=1.6.372')
|
|
options=('!libtool')
|
|
source=(http://connect.creativelabs.com/openal/Downloads/ALUT/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('e089b28a0267faabdb6c079ee173664a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|