blob: 52b0bf2a0418a1af40c132a2acdcaa54f1a35377 (
plain)
1 # Description: PulseAudio emulation for ALSA.
2 # URL: https://github.com/i-rinat/apulse
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: alsa-lib cmake glib
5
6 name=apulse
7 version=0.1.13
8 release=1
9 source=(https://github.com/i-rinat/$name/archive/v$version/$name-v$version.tar.gz)
10
11 build() {
12 cmake -S$name-$version -Bbuild -GNinja \
13 -DCMAKE_INSTALL_PREFIX=/usr \
14 -DCMAKE_BUILD_TYPE=Release
15
16 cmake --build build
17 DESTDIR=$PKG cmake --install build
18
19 install -d $PKG/etc/revdep.d
20 echo '/usr/lib/apulse' > $PKG/etc/revdep.d/apulse
21 }
|