2021-10-16 15:20:20 +02:00
|
|
|
# Description: Session/policy manager implementation for PipeWire
|
2021-01-21 13:27:08 +00:00
|
|
|
# URL: https://gitlab.freedesktop.org/pipewire/wireplumber
|
2021-10-10 12:23:04 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2021-10-16 15:20:20 +02:00
|
|
|
# Depends on: cpptoml lua pipewire util-linux
|
2021-01-21 13:27:08 +00:00
|
|
|
|
|
|
|
name=wireplumber
|
2022-07-07 22:11:10 +02:00
|
|
|
version=0.4.11
|
2021-11-11 17:43:22 +01: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-06-29 16:20:09 +00:00
|
|
|
--wrap-mode nodownload \
|
2021-08-28 14:06:59 +02:00
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
2021-10-16 15:20:20 +02:00
|
|
|
-D system-lua=true \
|
2021-10-17 10:09:59 +02:00
|
|
|
-D system-lua-version=5.4 \
|
2021-10-16 15:20:20 +02:00
|
|
|
-D introspection=disabled \
|
|
|
|
-D tests=false
|
2021-01-21 13:27:08 +00:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
}
|