[fdk-aac] Initial import for fdk-aac

nchauvet nchauvet at rpmfusion.org
Fri Sep 9 12:41:06 CEST 2016


commit 4a91ee42e3f0989b21cfba23928989f1687c14e0
Author: Nicolas Chauvet <kwizart at gmail.com>
Date:   Fri Jan 16 14:30:51 2015 +0100

    Initial import for fdk-aac

 .gitignore   |  1 +
 fdk-aac.spec | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources      |  1 +
 3 files changed, 74 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..a0a0485 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+fdk-aac-0.1.3.tar.gz
diff --git a/fdk-aac.spec b/fdk-aac.spec
new file mode 100644
index 0000000..9903949
--- /dev/null
+++ b/fdk-aac.spec
@@ -0,0 +1,72 @@
+Name:           fdk-aac
+Version:        0.1.3
+Release:        1%{?dist}
+Summary:        Fraunhofer FDK AAC Codec Library
+
+License:        FDK-AAC
+URL:            http://sourceforge.net/projects/opencore-amr
+Source0:        http://downloads.sourceforge.net/opencore-amr/%{name}-%{version}.tar.gz
+
+
+%description
+The Fraunhofer FDK AAC Codec Library ("FDK AAC Codec") is software that
+implements the MPEG Advanced Audio Coding ("AAC") encoding and decoding
+scheme for digital audio.
+
+
+%package        devel
+Summary:        Development files for %{name}
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+
+%prep
+%setup -q
+
+
+%build
+%configure \
+  --disable-silent-rules \
+  --disable-static
+
+make %{?_smp_mflags}
+
+
+%install
+make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc ChangeLog NOTICE
+%{_libdir}/*.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%doc documentation/*.pdf
+%dir %{_includedir}/fdk-aac
+%{_includedir}/fdk-aac/*.h
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/%{name}.pc
+
+
+%changelog
+* Sun Jan 26 2014 Nicolas Chauvet <kwizart at gmail.com> - 0.1.3-1
+- Update to 1.3.0
+
+* Thu Aug 15 2013 Nicolas Chauvet <kwizart at gmail.com> - 0.1.2-1
+- Update to 0.1.2
+
+* Thu Mar 28 2013 Nicolas Chauvet <kwizart at gmail.com> - 0.1.1-1
+- Initial spec
+
diff --git a/sources b/sources
index e69de29..c900ce0 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+6b3b70faa3108b7a00f7740b3de38b83  fdk-aac-0.1.3.tar.gz


More information about the rpmfusion-commits mailing list