diff --git a/README.md b/README.md index 1c5d376..d2d61ba 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # opus-tools +Opus-tools provides command-line utilities to encode, inspect, and decode .opus files. + diff --git a/opus-tools.spec b/opus-tools.spec new file mode 100644 index 0000000..c19ab9a --- /dev/null +++ b/opus-tools.spec @@ -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 +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 0.2-1mamba +- package created using the webbuild interface