package created using the webbuild interface [release 1.5.0-1mamba;Fri Jul 23 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 20:40:04 +01:00
parent 1be1ff4feb
commit fe2b8c4dd5
2 changed files with 56 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# audiowaveform
C++ program to generate waveform data and render waveform images from audio files.

54
audiowaveform.spec Normal file
View File

@ -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 <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