From 889f2f77803c4b33d0d5e06c1cf55b6c0d08bb98 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 06:04:57 +0100 Subject: [PATCH] package created by silvan using the webbuild interface [release 0.1.2-1mamba;Fri Jan 11 2013] --- README.md | 2 ++ libvo-aacenc.spec | 66 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 libvo-aacenc.spec diff --git a/README.md b/README.md index 547cdbb..7d0dd0c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # libvo-aacenc +An Advanced Audio Coding (AAC) encoder. + diff --git a/libvo-aacenc.spec b/libvo-aacenc.spec new file mode 100644 index 0000000..dea9cbd --- /dev/null +++ b/libvo-aacenc.spec @@ -0,0 +1,66 @@ +Name: libvo-aacenc +Version: 0.1.2 +Release: 1mamba +Summary: An Advanced Audio Coding (AAC) encoder +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sourceforge.net/projects/opencore-amr/ +Source: http://downloads.sourceforge.net/project/opencore-amr/vo-aacenc/vo-aacenc-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +An Advanced Audio Coding (AAC) encoder. + +%package devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} +## note: you can add this requirement if .pc files are provided by this package +#Requires: pkg-config + +%description devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q -n vo-aacenc-%{version} + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_libdir}/libvo-aacenc.so.* +%doc COPYING + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/vo-aacenc +%{_includedir}/vo-aacenc/*.h +%{_libdir}/libvo-aacenc.a +%{_libdir}/libvo-aacenc.la +%{_libdir}/libvo-aacenc.so +%{_libdir}/pkgconfig/vo-aacenc.pc +%doc ChangeLog README + +%changelog +* Fri Jan 11 2013 Silvan Calarco 0.1.2-1mamba +- package created by silvan using the webbuild interface