forked from pool/seq24
208b9b7daa
* Fixed error if path for last used directory is not properly set. * Fix tooltip usage for older GTK versions (GTK_MINOR_VERSION < 12) * Fix sched_param memory leaks * Fix doubled key event for screen set name line New Features * Add support for jack session, patch provided by Torben Hohn * Add interrupt handler for SIGUSR1 to enable LADISH level 1 support * Add interrupt handler for SIGINT to ask for unsaved file changes * Remove "-f" command line option to be replaced by a simple <filename> argument (see "seq24 --help" for more information) General Changes * Add mnemonics for bottom line widgets in main window and label for screen set name edit line * Add missing command line parameters to help message, display short options as well * Add command line option for program version * Add missing command line parameters to man page * Remove complaints about file read error if configuration files do not exist * Cleanup configure.in: remove unused variables, harmonize option enabling/disabling * Some code cleanups OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/seq24?expand=0&rev=12
77 lines
2.1 KiB
RPMSpec
77 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package seq24
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
Name: seq24
|
|
BuildRequires: alsa-devel
|
|
BuildRequires: automake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: gtkmm2-devel
|
|
BuildRequires: jack-devel
|
|
BuildRequires: update-desktop-files
|
|
Summary: A Small, Real-Time MIDI Sequencer
|
|
License: GPL-2.0+
|
|
Group: Productivity/Multimedia/Sound/Midi
|
|
Version: 0.9.2
|
|
Release: 0
|
|
Source: http://launchpad.net/seq24/trunk/%{version}/+download/%{name}-%{version}.tar.bz2
|
|
Source1: %name.desktop
|
|
Source2: seq24.png
|
|
Patch0: seq24-buttonbox.patch
|
|
Patch1: seq24-codeclenup.patch
|
|
Url: https://launchpad.net/seq24
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Seq24 is a real-time midi sequencer. It was created to provide a very
|
|
simple interface for editing and playing MIDI 'loops.'
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Rob C. Buse <rcbuse@filter24.org>
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0
|
|
%patch1
|
|
|
|
%build
|
|
autoreconf --force --install
|
|
%configure
|
|
make %{?jobs:-j %jobs}
|
|
|
|
%install
|
|
%makeinstall
|
|
%suse_update_desktop_file -i %name AudioVideo Sequencer
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
|
|
cp %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps
|
|
|
|
%clean
|
|
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS COPYING ChangeLog README RTC SEQ24
|
|
%doc seq24usr.example
|
|
%doc %{_mandir}/man?/*
|
|
%{_bindir}/*
|
|
%{_datadir}/applications/*.desktop
|
|
%{_datadir}/pixmaps/*.png
|
|
|
|
%changelog
|