# $Id$ # Maintainer: Jan de Groot # ALARM: Kevin Mihelich # - remove makedepend on valgrind pkgname=pipewire pkgver=0.1.9 pkgrel=1 pkgdesc="Server and user space API to deal with multimedia pipelines" url="https://pipewire.org" license=(LGPL2.1) arch=(x86_64) depends=(gstreamer gst-plugins-base v4l-utils sbc ffmpeg) makedepends=(git meson doxygen graphviz xmltoman) install=pipewire.install _commit=62f113dbba7c706fad18c715cfad57ca7e102cb3 # tags/0.1.9 source=("git+https://github.com/PipeWire/pipewire#commit=$_commit") sha256sums=('SKIP') pkgver() { cd $pkgname git describe --tags | sed 's/-/+/g' } prepare() { mkdir build cd $pkgname # Reduce docs size printf '%s\n' >>doc/Doxyfile.in \ HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes } build() { arch-meson $pkgname build \ -Denable_docs=true \ -Denable_man=true \ -Denable_gstreamer=true ninja -C build } check() { cd build meson test } package() { DESTDIR="$pkgdir" ninja -C build install }