# Description: PulseAudio emulation for ALSA
# URL: https://github.com/i-rinat/apulse
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
# Depends on: alsa-lib glib

name=apulse
version=0.1.14
release=1
source=(https://github.com/i-rinat/${name}/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
}

# s-sht-mode
