diff --git a/README.md b/README.md index fd6b9b1..8caa58e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # audiowaveform +C++ program to generate waveform data and render waveform images from audio files. + diff --git a/audiowaveform.spec b/audiowaveform.spec new file mode 100644 index 0000000..90693dd --- /dev/null +++ b/audiowaveform.spec @@ -0,0 +1,54 @@ +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 +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 1.5.0-1mamba +- package created using the webbuild interface