mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
623 B
Bash
23 lines
623 B
Bash
# $Id: PKGBUILD 27265 2009-02-18 03:08:16Z eric $
|
|
# Maintainer: Dorphell
|
|
# Maintainer: Travis Willard <travisw@wmpub.ca>
|
|
# Contributor: Arkamririon <Arkamririon@gmx.net>
|
|
|
|
pkgname=freealut
|
|
pkgver=1.1.0
|
|
pkgrel=3
|
|
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 || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|