Changelog: https://github.com/GrandOrgue/grandorgue/releases/tag/3.16.0-1 - Added more columns to the Initial MIDI tab of the Organ settings #1974 - Added capability of assigning any MIDI object events to the initial MIDI configuration #1974 - Added capability of setting Send, Division and Shortcut events for Initial MIDI objects #1974 - Changed package names for Linux: grandorgue-wx30 requires wxWidgets 3.0 and grandorgue requires wxWidgets 3.2 - Load pitch and show it to labels on organ load #2233 - Reduced decimal numbers for PitchLabel #2234 - Added support of exporting current midi settings to a text file and of importing them from both text and .cmb files #1199 - Fixed crash on reloading an organ #2185 - Removed support of linux distributions with GLIBC versions before 2.35 (ubuntu<22, debian<12, fedora<36, oracle linux<9) - Added capability of customising minimum amplitude level of enclosures added internally by GrandOrgue #782 - Added resending midi events when exiting from MidiEventDialog #2062 - Fixed incorrect default audio channels config #2115 - Changed default sample rate, samples per buffer and interpolation type to 48000, 512 and Polyphase #2115 - Increased the maximum samples per buffer to 2048 #2115 - Increased the maximum supported sample rate to 192000 #2115 - Fixed nested scrolling in the MidiObject dialog on macOs #1972 - Increased the maximum number of user-defined temperaments to 999 #1982 - Remove gcc15-includes.patch. OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/grandorgue?expand=0&rev=47
108 lines
3.1 KiB
RPMSpec
108 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package grandorgue
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# 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 version_suffix 1
|
|
|
|
Name: grandorgue
|
|
Version: 3.16.0
|
|
Release: 0
|
|
Summary: Virtual Pipe Organ Software
|
|
License: GPL-2.0-or-later
|
|
URL: https://github.com/GrandOrgue/grandorgue
|
|
Source: https://github.com/GrandOrgue/grandorgue/archive/%{version}-%{version_suffix}.tar.gz#/%{name}-%{version}-%{version_suffix}.tar.gz
|
|
BuildRequires: ImageMagick
|
|
BuildRequires: cmake >= 3.10
|
|
BuildRequires: docbook-xsl-stylesheets
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: gettext-tools
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: libcurl-devel
|
|
BuildRequires: libxslt-tools
|
|
BuildRequires: po4a
|
|
BuildRequires: update-desktop-files
|
|
BuildRequires: wxGTK3-devel
|
|
BuildRequires: zip
|
|
BuildRequires: zita-convolver-devel
|
|
BuildRequires: pkgconfig(alsa)
|
|
BuildRequires: pkgconfig(fftw3f)
|
|
BuildRequires: pkgconfig(jack)
|
|
BuildRequires: pkgconfig(libudev)
|
|
BuildRequires: pkgconfig(portaudio-2.0)
|
|
BuildRequires: pkgconfig(rtaudio)
|
|
BuildRequires: pkgconfig(rtmidi)
|
|
BuildRequires: pkgconfig(wavpack)
|
|
BuildRequires: pkgconfig(yaml-cpp)
|
|
BuildRequires: pkgconfig(zlib)
|
|
Recommends: grandorgue-demo
|
|
|
|
%package demo
|
|
Summary: GrandOrgue demo sampleset
|
|
License: GPL-2.0-or-later
|
|
Group: Productivity/Multimedia/Sound/Midi
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
GrandOrgue is a virtual pipe organ sample player application supporting a HW1 compatible file format.
|
|
|
|
%description demo
|
|
This package contains the demo sampleset for GrandOrgue.
|
|
|
|
%prep
|
|
%setup -qn %{name}-%{version}-%{version_suffix}
|
|
%autopatch -p1
|
|
|
|
%build
|
|
%cmake -DDOC_INSTALL_DIR=%{_docdir} \
|
|
-DUSE_BUILD_SYSTEM_LIBDIR=ON \
|
|
-DUSE_INTERNAL_RTAUDIO=OFF \
|
|
-DUSE_INTERNAL_PORTAUDIO=OFF \
|
|
-DUSE_INTERNAL_ZITACONVOLVER=OFF
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
mkdir -p %{buildroot}%{_docdir}/%{name}
|
|
install -m 644 README* %{buildroot}%{_docdir}/%{name}
|
|
%find_lang GrandOrgue
|
|
%suse_update_desktop_file GrandOrgue
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files -f GrandOrgue.lang
|
|
%{_bindir}/*
|
|
%{_libdir}/libGrandOrgue*
|
|
%dir %{_datadir}/GrandOrgue/packages
|
|
%dir %{_datadir}/GrandOrgue
|
|
%doc %{_docdir}/%{name}
|
|
%dir %{_datadir}/metainfo
|
|
%{_datadir}/metainfo/*
|
|
%{_datadir}/GrandOrgue/help
|
|
%{_datadir}/GrandOrgue/sounds
|
|
%{_datadir}/GrandOrgue/perftests
|
|
%{_datadir}/applications/*
|
|
%{_datadir}/mime/packages/*
|
|
%{_datadir}/icons/hicolor/*
|
|
%{_mandir}/man1/*
|
|
|
|
%files demo
|
|
%{_datadir}/GrandOrgue/packages/*.orgue
|
|
|
|
%changelog
|