From 0865ba1ba059b4df00f7e5fa6639de3f808f9d95 Mon Sep 17 00:00:00 2001 From: Bill Peck Date: Tue, 15 Aug 2017 15:56:37 -0400 Subject: [PATCH] don't use --with-systemd configure option Using the --with-systemd option will cause make install to issue groupadd and useradd commands which will fail in mock build environments like koji and copr. --- shairport-sync.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shairport-sync.spec b/shairport-sync.spec index a2b54c39..d082ff67 100644 --- a/shairport-sync.spec +++ b/shairport-sync.spec @@ -35,12 +35,13 @@ Shairport Sync does not support AirPlay video or photo streaming. %build autoreconf -i -f -%configure --with-avahi --with-alsa --with-ssl=openssl --with-soxr --with-systemd +%configure --with-avahi --with-alsa --with-ssl=openssl --with-soxr make %{?_smp_mflags} %install make install DESTDIR=%{buildroot} rm %{buildroot}/etc/shairport-sync.conf.sample +install -p -m644 -D scripts/shairport-sync.service $RPM_BUILD_ROOT%{_unitdir}/%{name}.service %pre getent group %{name} &>/dev/null || groupadd --system %{name} >/dev/null -- 2.47.2