author | Jan Alexander Steffens
<heftig@archlinux.org> 2021-06-09 09:06:32 UTC |
committer | Jan Alexander Steffens
<heftig@archlinux.org> 2021-06-09 09:06:32 UTC |
parent | 00a8c46da061aef652cad8abb483febd0950d52c |
PKGBUILD | +10 | -10 |
diff --git a/PKGBUILD b/PKGBUILD index a956536..0035404 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,8 +5,8 @@ pkgbase=pipewire pkgname=(pipewire alsa-card-profiles pipewire-docs pipewire-media-session pipewire-alsa pipewire-jack pipewire-pulse gst-plugin-pipewire pipewire-zeroconf) -pkgver=0.3.29 -pkgrel=2 +pkgver=0.3.30 +pkgrel=1 epoch=1 pkgdesc="Low-latency audio/video router and processor" url="https://pipewire.org" @@ -17,7 +17,7 @@ makedepends=(git meson doxygen xmltoman valgrind libpulse alsa-lib libldac libopenaptx libfdk-aac vulkan-headers vulkan-icd-loader avahi webrtc-audio-processing) checkdepends=(desktop-file-utils) -_commit=1b484867eb20dbcf9ffea812834fc9142f89f652 # tags/0.3.29 +_commit=e857856be7b64d562cdcc01c43933218a68b225e # tags/0.3.30 source=("git+https://gitlab.freedesktop.org/pipewire/pipewire.git#commit=$_commit") sha256sums=('SKIP') @@ -28,17 +28,17 @@ pkgver() { prepare() { cd pipewire - - # https://bugs.archlinux.org/task/71158 - git cherry-pick -n 2a8b7594bc508a1f9af0e2fb3455c3d8dc4de006 } build() { - arch-meson pipewire build \ - -D docs=enabled \ - -D jack=disabled \ - -D libcamera=disabled \ + local meson_options=( + -D docs=enabled + -D jack=disabled + -D libcamera=disabled -D udevrulesdir=/usr/lib/udev/rules.d + ) + + arch-meson pipewire build "${meson_options[@]}" meson compile -C build }