33 lines
915 B
Bash
33 lines
915 B
Bash
# Template file for 'libopenal'
|
|
pkgname=libopenal
|
|
version=1.17.0
|
|
revision=1
|
|
build_style=cmake
|
|
wrksrc="openal-soft-${version}"
|
|
short_desc="A cross-platform 3D audio library"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="LGPL-2.1"
|
|
homepage="http://kcat.strangesoft.net/openal.html"
|
|
distfiles="http://kcat.strangesoft.net/openal-releases/openal-soft-${version}.tar.bz2"
|
|
checksum=5e93336de2e7c50f3a01beba51861d6f61c3e4045a896191dc806591e46264d1
|
|
|
|
hostmakedepends="pkg-config cmake"
|
|
makedepends="alsa-lib-devel pulseaudio-devel SDL-devel ffmpeg-devel"
|
|
# dlopen(3)d dependencies
|
|
depends="alsa-lib libpulseaudio SDL"
|
|
|
|
post_install() {
|
|
rm -f ${DESTDIR}/usr/share/openal/alsoftrc.sample
|
|
vsconf alsoftrc.sample
|
|
}
|
|
|
|
libopenal-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|