forked from mikebrady/shairport-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shairport-sync.spec
122 lines (110 loc) · 4.94 KB
/
shairport-sync.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
Name: shairport-sync
Version: 3.1.7
Release: 1%{?dist}
Summary: AirTunes emulator. Multi-Room with Audio Synchronisation
# MIT licensed except for tinysvcmdns under BSD,
# FFTConvolver/ under GPLv3+ and audio_sndio.c
# under ISC
License: MIT and BSD and GPLv3+ and ISC
URL: https://github.com/mikebrady/shairport-sync
Source0: https://github.com/mikebrady/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
%{?systemd_requires}
BuildRequires: systemd
BuildRequires: pkgconfig(libconfig)
BuildRequires: pkgconfig(popt)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(libdaemon)
BuildRequires: pkgconfig(avahi-core)
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(soxr)
BuildRequires: autoconf
BuildRequires: automake
%description
Shairport Sync emulates an AirPort Express for the purpose of streaming audio
from iTunes, iPods, iPhones, iPads and AppleTVs. Audio played by a Shairport
Sync-powered device stays synchronised with the source and hence with similar
devices playing the same source. Thus, for example, synchronised multi-room
audio is possible without difficulty. (Hence the name Shairport Sync, BTW.)
Shairport Sync does not support AirPlay video or photo streaming.
%prep
%setup -q
%build
autoreconf -i -f
%configure --with-avahi --with-alsa --with-ssl=openssl --with-soxr
%make_build
%install
%make_install
rm %{buildroot}/etc/shairport-sync.conf.sample
install -p -m644 -D scripts/shairport-sync.service %{buildroot}%{_unitdir}/%{name}.service
%pre
getent group %{name} &>/dev/null || groupadd --system %{name} >/dev/null
getent passwd %{name} &> /dev/null || useradd --system -c "%{name} User" \
-d %{_localstatedir}/%{name} -m -g %{name} -s /sbin/nologin \
-G audio %{name} >/dev/null
%post
%systemd_post %{name}.service
%preun
%systemd_preun %{name}.service
%postun
%systemd_postun_with_restart %{name}.service
%files
%config(noreplace) /etc/shairport-sync.conf
/usr/bin/shairport-sync
/usr/share/man/man7/shairport-sync.7.gz
%{_unitdir}/%{name}.service
%doc README.md RELEASENOTES.md TROUBLESHOOTING.md
%license LICENSES
%changelog
* Thu Dec 21 2017 Mike Brady <[email protected]> 3.1.7
- Bug fix for unexpectedly resuming play at full volume from iOS 11.2 and macOS 10.3.2.
* Mon Dec 11 2017 Mike Brady <[email protected]> 3.1.5
- Bug fixes and better compatability with iOS 11.2 and mac OS 10.13.2.
- Better AirPlay synchronisation.
* Wed Sep 13 2017 Bill Peck <[email protected]> 3.1.2-1
- New upstream release
- The default value for the alsa setting mute_using_playback_switch has
been changed to "no" for compatability with other audio players on the
same machine. Because of this you may need to unmute your audio device
if you are upgrading from an older release.
- Fixed bugs that made Shairport Sync drop out or become unavailable when
playing YouTube videos, SoundCloud streams etc. from the Mac.
* Sun Aug 20 2017 Bill Peck <[email protected]> 3.1.1-1
- A bug in the sndio backend has been fixed that caused problems on some
versions of Linux.
- A change has been made to how Shairport Sync responds to a TEARDOWN request,
which should make it respond better to sequences of rapid termination and
restarting of play sessions. This can happen, for example, playing YouTube
videos in Safari or Chrome on a Mac.
- Choosing soxr interpolation in the configuration file will now cause
Shairport Sync to terminate with a message if Shairport Sync has not been
compiled with SoX support.
- Other small changes.
* Thu Aug 17 2017 Bill Peck <[email protected]> 3.1-1
- new backend offering synchronised PulseAudio support.
- new optional loudness and convolution filters
- improvements in non-synchronised backends
- enhancements, stability improvements and bug fixes
* Fri Feb 24 2017 Mike Brady <[email protected]> 2.8.6
- Many changes including 8- 16- 24- and 32-bit output
* Fri Oct 21 2016 Mike Brady <[email protected]> 2.8.6
- Advertise self as ShairportSync rather than AirPort device 2.8.6
* Sun Sep 25 2016 Mike Brady <[email protected]> 2.8.5
- Bug fixes and small enhancements 2.8.5
* Sat May 28 2016 Mike Brady <[email protected]> 2.8.4
- Bug fixes and a few small enhancements 2.8.4
* Fri Apr 15 2016 Mike Brady <[email protected]> 2.8.2
- Stability improvements, bug fixes and a few special-purpose settings 2.8.2
* Wed Mar 02 2016 Mike Brady <[email protected]> 2.8.1
- Stability improvements and important bug fixes 2.8.1
* Sat Jan 30 2016 Mike Brady <[email protected]> 2.8.0
- Enhancements and bug fixes 2.8.0
* Sun Oct 18 2015 Mike Brady <[email protected]> 2.6
- Important enhancements and bug fixes 2.6
* Thu Aug 27 2015 Mike Brady <[email protected]> 2.4.1
- Minor bug fixes 2.4.1
* Thu Aug 27 2015 Mike Brady <[email protected]> 2.4
- Prepare for stable release 2.4
* Wed Aug 26 2015 Mike Brady <[email protected]> 2.3.13.1-1
- Harmonise release numbers
* Fri Jul 24 2015 Bill Peck <[email protected]> 2.3.7-1
- Initial spec file