-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkmetronome.spec.in
69 lines (58 loc) · 1.88 KB
/
kmetronome.spec.in
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
# spec file for package kmetronome (Version @PROJECT_VERSION@)
#
# norootforbuild
Name: kmetronome
Version: @PROJECT_VERSION@
Release: 0
License: GPL v2 or later
Summary: MIDI Metronome using ALSA Sequencer
Group: Productivity/Multimedia/Sound/Midi
URL: http://kmetronome.sourceforge.net
Source: %name-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: cmake
BuildRequires: alsa-lib-devel
BuildRequires: qt6-qtbase-devel
BuildRequires: qt6-qtsvg-devel
BuildRequires: qt6-qttools-devel
BuildRequires: libdrumstick-devel
%description
Drumstick Metronome is a MIDI metronome with Qt interface, based on the ALSA
sequencer. Intended for musicians and music students, it is a tool to keep
the rhythm while playing musical instruments. It uses MIDI for sound
generation instead of digital audio, allowing low CPU usage, and very
accurate timing thanks to the ALSA sequencer.
Authors:
--------
Pedro Lopez-Cabanillas <[email protected]>
%prep
%setup -q
%build
%cmake
make %{?jobs:-j %jobs} VERBOSE=1
%install
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc INSTALL README ChangeLog AUTHORS TODO
%doc %{_mandir}/man1/*
%dir %{_datadir}/%name
%dir %{_datadir}/icons/hicolor/*/apps
%dir %{_datadir}/dbus-1/services
%dir %{_datadir}/dbus-1/interfaces
%{_bindir}/%name
%{_datadir}/applications/%name.desktop
%{_datadir}/dbus-1/*/*
%{_datadir}/icons/hicolor/*/*/*
%{_datadir}/%name/*
%changelog
* Sun Dec 24 2023 Pedro Lopez-Cabanillas <[email protected]> 1.4.0
- New release
* Thu Dec 31 2020 Pedro Lopez-Cabanillas <[email protected]> 1.2.0
- New release
* Tue Nov 5 2019 Pedro Lopez-Cabanillas <[email protected]> 1.0.1
- New release
* Sun Oct 12 2014 Pedro Lopez-Cabanillas <[email protected]> 1.0.0
- Initial version