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-08-28 14:06:59 +02:00
|
|
|
version=0.4.2
|
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-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-06-29 15:16:19 +00:00
|
|
|
-D system-lua=true
|
2021-01-21 13:27:08 +00:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
}
|