45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
# Template file for 'libopenal'
|
|
pkgname=libopenal
|
|
version=1.19.0
|
|
revision=1
|
|
wrksrc="openal-soft-${version}"
|
|
build_style=cmake
|
|
configure_args="-DALSASOFT_WANT_SDL2=ON"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="alsa-lib-devel pulseaudio-devel SDL2-devel ffmpeg-devel jack-devel"
|
|
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=f1adf3a6e73e2f9270a0fd00887ea23793968fa787f60dcdec41a3b2f42a0ed6
|
|
|
|
pre_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
arm*) # Hack to not compile (broken) arm_neon.h inlining of indirect function calls
|
|
sed -i CMakeLists.txt -e"s;arm_neon.h;arm_neon.xxx;"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
pre_configure() {
|
|
cd native-tools
|
|
CC= CXX= CPP= LD= AR= AS= RANLIB= CFLAGS= CXXFLAGS= LDFLAGS= cmake .
|
|
make ${makejobs}
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|