package created using the webbuild interface [release 0.2-1mamba;Sun Jul 31 2022]

This commit is contained in:
Silvan Calarco 2024-01-06 08:18:32 +01:00
parent da847cc46e
commit a08f058a1e
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# opus-tools
Opus-tools provides command-line utilities to encode, inspect, and decode .opus files.

53
opus-tools.spec Normal file
View File

@ -0,0 +1,53 @@
Name: opus-tools
Version: 0.2
Release: 1mamba
Summary: Command-line utilities to encode, inspect, and decode .opus files
Group: Applications/Multimedia
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://opus-codec.org/downloads/
Source: https://archive.mozilla.org/pub/opus/opus-tools-%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libflac-devel
BuildRequires: libogg-devel
BuildRequires: libopenssl-devel
BuildRequires: libopus-devel
BuildRequires: libopusenc-devel
BuildRequires: libopusfile-devel
## AUTOBUILDREQ-END
%description
Opus-tools provides command-line utilities to encode, inspect, and decode .opus files.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/opusdec
%{_bindir}/opusenc
%{_bindir}/opusinfo
%{_mandir}/man1/opusdec.1*
%{_mandir}/man1/opusenc.1*
%{_mandir}/man1/opusinfo.1*
%doc AUTHORS COPYING
%changelog
* Sun Jul 31 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2-1mamba
- package created using the webbuild interface