40 lines
701 B
RPMSpec
40 lines
701 B
RPMSpec
Name: bpm-tools
|
|
Version: 0.3
|
|
Release: 1%{?dist}
|
|
Summary: MP3 tempo analyzis tool
|
|
|
|
Group: Applications/Multimedia
|
|
License: GPL-v2
|
|
URL: http://www.pogo.org.uk/~mark/bpm-tools/
|
|
Source0: %{name}-%{version}.tgz
|
|
|
|
%description
|
|
The bpm-tools software is the result of some experiments I did into automatically
|
|
calculating and tagging the tempo (in beats-per-minute) of music files.
|
|
|
|
|
|
%prep
|
|
%setup -q -n %name
|
|
|
|
|
|
%build
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
make install PREFIX=%{buildroot}%{_prefix}
|
|
|
|
|
|
%files
|
|
%doc README COPYING
|
|
%{_bindir}/bpm
|
|
%{_bindir}/bpm-graph
|
|
%{_bindir}/bpm-tag
|
|
%{_mandir}/man1/bpm*.1.gz
|
|
|
|
|
|
%changelog
|
|
* Sat Mar 18 2017 Daniel Steiner <daniel.steiner@greenmail.ch>
|
|
- Initial package built.
|
|
|