1
0

Accepting request 1095223 from multimedia:apps

OBS-URL: https://build.opensuse.org/request/show/1095223
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/shairport-sync?expand=0&rev=17
This commit is contained in:
Dominique Leuenberger 2023-06-25 19:42:49 +00:00 committed by Git OBS Bridge
commit 15f4c1562a
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Sun Jun 25 11:44:48 UTC 2023 - Niklas Haas <obs@haasn.xyz>
- Add pipewire audio output support.
-------------------------------------------------------------------
Sun Jun 25 11:38:12 UTC 2023 - Niklas Haas <obs@haasn.xyz>
- Add missing `audio` group during setup.
-------------------------------------------------------------------
Sun May 21 20:32:51 UTC 2023 - Lukas Müller <expeehaa@outlook.com>

View File

@ -40,6 +40,7 @@ BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(avahi-client)
BuildRequires: pkgconfig(libconfig)
BuildRequires: pkgconfig(libdaemon)
BuildRequires: pkgconfig(libpipewire-0.3)
BuildRequires: pkgconfig(libpulse)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(popt)
@ -75,6 +76,7 @@ autoreconf -i -f
--with-ssl=openssl \
--with-alsa \
--with-pa \
--with-pw \
--with-pipe \
--with-avahi \
--with-soxr \
@ -92,6 +94,7 @@ mkdir -p %{buildroot}%{_sbindir}
ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
%pre
getent group audio >/dev/null || %{_sbindir}/groupadd --system audio
getent group %{name} >/dev/null || %{_sbindir}/groupadd --system %{name}
getent passwd %{name} >/dev/null || %{_sbindir}/useradd --system -c "%{name} User" \
-d %{_localstatedir}/%{name} -m -g %{name} -s %{_sbindir}/nologin \