opt/faudio/Pkgfile
2020-07-08 23:14:57 +10:00

21 lines
504 B
Plaintext

# Description: XAudio2 reimplementation
# URL: https://github.com/FNA-XNA/FAudio/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: ffmpeg libsdl2
name=faudio
version=20.07
release=1
source=(https://github.com/FNA-XNA/FAudio/archive/$version/$name-$version.tar.gz)
build() {
cmake -SFAudio-$version -Bbuild -GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=lib \
-DFFMPEG=ON
cmake --build build
DESTDIR=$PKG cmake --install build
}