forked from ports/contrib
26 lines
668 B
Plaintext
26 lines
668 B
Plaintext
# Description: PulseAudio emulation for ALSA
|
|
# URL: https://github.com/i-rinat/apulse
|
|
# Maintainer: unmaintained
|
|
# Depends on: alsa-lib glib
|
|
|
|
name=apulse
|
|
version=0.1.13
|
|
release=1
|
|
source=(https://github.com/i-rinat/apulse/archive/v$version/$name-v$version.tar.gz)
|
|
|
|
build() {
|
|
cmake -S $name-$version -B build -G Ninja \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
|
|
install -d $PKG/etc/revdep.d
|
|
echo '/usr/lib/apulse' > $PKG/etc/revdep.d/apulse
|
|
}
|