void-packages/srcpkgs/libopenal/template
Jürgen Buchmüller b8b09439ba libopenal: neon broken on armv7* as well
Disable neon for all arm* targets.
2017-02-10 01:55:38 +01:00

38 lines
1 KiB
Bash

# Template file for 'libopenal'
pkgname=libopenal
version=1.17.2
revision=4
build_style=cmake
wrksrc="openal-soft-${version}"
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=a341f8542f1f0b8c65241a17da13d073f18ec06658e1a1606a8ecc8bbc2b3314
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
}
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
}
}