2021-01-21 13:27:08 +00:00
|
|
|
# Description: Session / policy manager implementation for PipeWire
|
|
|
|
# URL: https://gitlab.freedesktop.org/pipewire/wireplumber
|
|
|
|
# Maintainer: Tim Biermann
|
2021-05-09 11:31:18 +00:00
|
|
|
# Depends on: cpptoml lua53 pipewire util-linux
|
2021-01-21 13:27:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
name=wireplumber
|
2021-06-10 18:49:27 +00:00
|
|
|
version=0.4.0
|
2021-01-21 13:27:08 +00:00
|
|
|
release=1
|
2021-05-09 11:31:18 +00:00
|
|
|
source=(https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/$version/$name-$version.tar.bz2)
|
2021-01-21 13:27:08 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
meson setup $name-$version build \
|
|
|
|
-D prefix=/usr \
|
|
|
|
--buildtype=plain \
|
2021-05-09 11:31:18 +00:00
|
|
|
-Dsystem-lua=true \
|
2021-01-21 13:27:08 +00:00
|
|
|
--wrap-mode nodownload
|
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
}
|