opt/faudio/Pkgfile

21 lines
519 B
Plaintext
Raw Normal View History

2019-08-31 12:18:17 +02:00
# Description: XAudio2 reimplementation
# URL: https://github.com/FNA-XNA/FAudio/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: ffmpeg libsdl2
name=faudio
2020-06-06 13:32:00 +02:00
version=20.06
2019-08-31 12:18:17 +02:00
release=1
source=(https://github.com/FNA-XNA/FAudio/archive/$version/$name-$version.tar.gz)
build() {
2020-05-14 14:56:11 +02:00
cmake -SFAudio-$version -Bbuild -GNinja \
2019-08-31 12:18:17 +02:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=lib \
-DFFMPEG=ON
2020-04-25 11:02:39 +02:00
cmake --build build
DESTDIR=$PKG cmake --build build --target install
2019-08-31 12:18:17 +02:00
}