55 lines
1.3 KiB
RPMSpec
55 lines
1.3 KiB
RPMSpec
|
Name: audiowaveform
|
||
|
Version: 1.5.0
|
||
|
Release: 1mamba
|
||
|
Summary: C++ program to generate waveform data and render waveform images from audio files
|
||
|
Group: Applications/Multimedia
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||
|
URL: https://github.com/bbc/audiowaveform
|
||
|
Source: https://github.com/bbc/audiowaveform.git/%{version}/audiowaveform-%{version}.tar.bz2
|
||
|
License: GPL
|
||
|
## AUTOBUILDREQ-BEGIN
|
||
|
BuildRequires: glibc-devel
|
||
|
BuildRequires: libboost-devel
|
||
|
BuildRequires: libgcc
|
||
|
BuildRequires: libgd-devel
|
||
|
BuildRequires: libid3tag-devel
|
||
|
BuildRequires: libmad-devel
|
||
|
BuildRequires: libsndfile-devel
|
||
|
BuildRequires: libstdc++6-devel
|
||
|
## AUTOBUILDREQ-END
|
||
|
BuildRequires: cmake
|
||
|
|
||
|
%description
|
||
|
C++ program to generate waveform data and render waveform images from audio files.
|
||
|
|
||
|
%debug_package
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%cmake -d build \
|
||
|
-DENABLE_TESTS=OFF
|
||
|
|
||
|
%make
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
%makeinstall -C build
|
||
|
|
||
|
%clean
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%{_bindir}/audiowaveform
|
||
|
%{_mandir}/man1/audiowaveform.1*
|
||
|
%{_mandir}/man5/audiowaveform.5*
|
||
|
%doc COPYING
|
||
|
|
||
|
%changelog
|
||
|
* Fri Jul 23 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.0-1mamba
|
||
|
- package created using the webbuild interface
|