32 lines
920 B
Bash
32 lines
920 B
Bash
# Template file for 'FAudio'
|
|
pkgname=FAudio
|
|
version=19.07
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DFFMPEG=ON"
|
|
makedepends="SDL2-devel ffmpeg-devel"
|
|
short_desc="Accuracy-focused XAudio reimplementation for open platforms"
|
|
maintainer="Franc[e]sco <lolisamurai@tfwno.gf>"
|
|
license="custom:zlib"
|
|
homepage="https://github.com/FNA-XNA/FAudio"
|
|
distfiles="https://github.com/FNA-XNA/FAudio/archive/${version}.tar.gz"
|
|
checksum=b05ca9cbdaf943deadae124dcc437e1106d525ab7f54b62c74dcb2eaead21178
|
|
|
|
# sdl2 cmake file appears to be broken for cross compilation
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/SDL2 "
|
|
CXXFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/SDL2 "
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
FAudio-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/cmake
|
|
vmove usr/share
|
|
}
|
|
}
|