blob: 8f8ae56b0371c5a53c871a34ad8f04ad643dd639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Abheek Dhawan <abheekd at protonmail dot com>
pkgname="wwise-audio-tools-git"
pkgver="0.5.0"
pkgrel=1
pkgdesc="Tools for working with Wwise file types (only extraction at the moment)"
arch=("x86_64")
license=("MIT")
makedepends=("cmake" "ninja" "git")
source=("git+https://github.com/WolvenKit/wwise-audio-tools")
sha512sums=("SKIP")
prepare() {
cd "${srcdir}/wwise-audio-tools"
git submodule update --init
}
build() {
cmake -G "Ninja" -B build -S "${srcdir}/wwise-audio-tools" \
-DCMAKE_INSTALL_PREFIX="/usr" \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" PREFIX="usr" cmake --install build
}
|