22 lines
559 B
Plaintext
22 lines
559 B
Plaintext
# Description: PulseAudio emulation for ALSA.
|
|
# URL: https://github.com/i-rinat/apulse
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: alsa-lib cmake glib
|
|
|
|
name=apulse
|
|
version=0.1.13
|
|
release=1
|
|
source=(https://github.com/i-rinat/$name/archive/v$version/$name-v$version.tar.gz)
|
|
|
|
build() {
|
|
cmake -S$name-$version -Bbuild -GNinja \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
|
|
install -d $PKG/etc/revdep.d
|
|
echo '/usr/lib/apulse' > $PKG/etc/revdep.d/apulse
|
|
}
|