SHA256
1
0
forked from pool/Jamulus
Jamulus/Jamulus.spec
Konstantin Voinov 5418164c30 Accepting request 855572 from home:kill_it:branches:multimedia:apps
- Update to version 3.6.2
  * change Clear All Stored Solo Settings to clear Mute as 
    well (#731)
  * avoid selecting IPv6 results from hostname lookup, coded by 
    jarmar (#722)
  * added possibility to set MIDI offset for fader control to 
    --ctrlmidich (#95)
  * detect if no audio Device is selected before trying to connect
    a server (#129)
  * on MacOS if an audio device is no longer available, show a 
    warning rather than switching to default automatically (#727)
  * bug fix: sliders move by themselves if fader groups are used
    on reconnect (#611)
  * bug fix: do not reset sound card channel selection on a device
    property change (#727)
  * bug fix: compiling Jamulus 3.6.1 is failing on Debian 9 
    Linode (#736)
  * bug fix: on MacOS Jamulus does not always select the previous
    sound card (#680)
  * bug fix: use new server icon on Mac server bundle and Windows
    installer (#737)
  * bug fix: ping times of servers which are further down the
    server list are too high (#49)

OBS-URL: https://build.opensuse.org/request/show/855572
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/Jamulus?expand=0&rev=31
2020-12-13 14:23:26 +00:00

86 lines
2.9 KiB
RPMSpec

#
# spec file for package Jamulus
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2014 Pascal Bleser <pascal.bleser@opensuse.org>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define tarball_version 3_6_2
Name: Jamulus
Version: 3.6.2
Release: 0
Summary: Low-latency internet connection tool for real-time jam sessions
License: GPL-2.0-or-later
URL: http://llcon.sourceforge.net/index.html
Source0: https://github.com/corrados/jamulus/archive/r%{tarball_version}.tar.gz#/jamulus-r%{tarball_version}.tar.gz
Source1: %{name}_icon.png
BuildRequires: ImageMagick
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: jack-devel
BuildRequires: pkgconfig
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(Qt5Concurrent)
BuildRequires: pkgconfig(Qt5Network)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5Xml)
BuildRequires: pkgconfig(opus)
Requires: jack
Provides: llcon = %{version}
Obsoletes: llcon < %{version}
Provides: jamulus = %{version}
Obsoletes: jamulus < %{version}
%description
The Jamulus software enables musicians to perform real-time jam sessions over
the internet. There is one server running the Jamulus server software which
collects the audio data from each Jamulus client software, mixes the audio data
and sends the mix back to each client.
%prep
%autosetup -p1 -n jamulus-r%{tarball_version}
install %{SOURCE1} .
%build
%qmake5 CONFIG+=opus_shared_lib CONFIG+=disable_version_check
%make_jobs
%install
install -D -m0755 Jamulus %{buildroot}%{_bindir}/%{name}
for s in 16 22 32 48 64 72 96 128 192; do
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps
convert -strip -resize ${s}x${s} %{name}_icon.png \
%{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/%{name}.png
done
install -Dm0644 %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/%{name}.png \
%{buildroot}%{_datadir}/pixmaps/%{name}.png
%suse_update_desktop_file -c %{name} %{name} "Internet Jam Session Software" %{name} %{name} "AudioVideo;Audio;Mixer;Qt"
%suse_update_desktop_file -C "Jam Session" %{name}
%fdupes %{buildroot}%{_datadir}
%files
%doc README.md ChangeLog
%license COPYING
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%{_datadir}/pixmaps/%{name}.png
%changelog