opt/faudio/Pkgfile

21 lines
504 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-10-04 12:15:56 +02:00
version=20.10
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
2020-07-08 15:14:57 +02:00
DESTDIR=$PKG cmake --install build
2019-08-31 12:18:17 +02:00
}