compat-32/faudio-32/Pkgfile

23 lines
551 B
Plaintext
Raw Normal View History

2019-08-31 14:00:48 +02:00
# Description: XAudio2 reimplementation
# URL: https://github.com/FNA-XNA/FAudio/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libsdl2-32 faudio
name=faudio-32
2020-09-20 04:06:11 +02:00
version=20.09
2019-08-31 14:00:48 +02:00
release=1
source=(https://github.com/FNA-XNA/FAudio/archive/$version/$name-$version.tar.gz)
build() {
2020-05-14 15:04:11 +02:00
cmake -SFAudio-$version -Bbuild -GNinja \
2019-08-31 14:00:48 +02:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=lib32
# -DFFMPEG=ON
2020-04-25 11:10:30 +02:00
cmake --build build
DESTDIR=$PKG cmake --build build --target install
2020-05-14 15:04:11 +02:00
2019-08-31 14:00:48 +02:00
rm -r $PKG/usr/include
}