mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
35 lines
956 B
Bash
35 lines
956 B
Bash
# $Id$
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributer: Jason Chu <jchu@xentac.net>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - 1.14 is broken for ARM, staying at 1.13 for now
|
|
|
|
plugrel=1
|
|
noautobuild=1
|
|
|
|
pkgname=openal
|
|
pkgver=1.13
|
|
pkgrel=3
|
|
pkgdesc="A cross-platform 3D audio library"
|
|
arch=(i686 x86_64)
|
|
url="http://www.openal.org/"
|
|
license=(LGPL)
|
|
depends=(glibc)
|
|
makedepends=(alsa-lib sdl pkgconfig cmake libpulse)
|
|
options=('!libtool')
|
|
source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$pkgver.tar.bz2)
|
|
md5sums=('58b7d2809790c70681b825644c5f3614')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-soft-$pkgver/build"
|
|
cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-soft-$pkgver"
|
|
make -C build DESTDIR="$pkgdir/" install
|
|
install -Dm644 alsoftrc.sample "$pkgdir/etc/openal/alsoft.conf.sample"
|
|
}
|