# # Conditional build: %bcond_without asm Summary: VP8, a high-quality video codec Name: libvpx Version: 0.9.5 Release: 1 License: BSD Group: Libraries Source0: http://webm.googlecode.com/files/%{name}-v%{version}.tar.bz2 # Source0-md5: 4bf2f2c76700202c1fe9201fcb0680e3 Source1: %{name}.ver Patch0: %{name}-0.9.0-no-explicit-dep-on-static-lib.patch URL: http://www.webmproject.org/ BuildRequires: /usr/bin/php BuildRequires: autoconf BuildRequires: automake BuildRequires: doxygen BuildRequires: php-common >= 4:5.0.0 BuildRequires: php-pcre %{?with_asm:BuildRequires: yasm} BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description VP8, a high-quality video codec. %package devel Summary: Header files and develpment documentation for libvpx Group: Development/Libraries Requires: %{name} = %{epoch}:%{version}-%{release} %description devel Header files and documentation for libvpx. %package static Summary: Static libvpx library Group: Development/Libraries Requires: %{name}-devel = %{epoch}:%{version}-%{release} %description static Static libvpx library. %prep %setup -q -n %{name}-v%{version} %patch0 -p1 %build install -d build cd build # not autoconf configure ../configure \ %if %{with asm} %ifarch %{x8664} --target=x86_64-linux-gcc \ %endif %ifarch %{ix86} --target=x86-linux-gcc \ %endif %else --target=generic-gnu \ %endif --enable-pic \ --disable-optimizations \ --enable-vp8 \ --enable-postproc \ --enable-runtime-cpu-detect # Hack our optflags in. sed -i "s|\"vpx_config.h\"|\"vpx_config.h\" %{rpmcflags} %{rpmcppflags} -fPIC|g" {libs,examples,docs}-*.mk sed -i "s|STRIP=.*|STRIP=|g" {libs,examples,docs}-*.mk %{__make} verbose=true target=libs \ CC="%{__cc}" mkdir tmp cd tmp ar x ../libvpx_g.a cd .. %{__cc} %{rpmldflags} -fPIC -shared \ -Wl,--no-undefined -Wl,-soname,libvpx.so.0 -Wl,--version-script,%{SOURCE1} -Wl,-z,noexecstack \ -o libvpx.so.0.0.0 tmp/*.o \ -pthread -lm rm -rf tmp # Temporarily dance the static libs out of the way mv libvpx.a libNOTvpx.a mv libvpx_g.a libNOTvpx_g.a # We need to do this so the examples can link against it. ln -sf libvpx.so.0.0.0 libvpx.so %{__make} verbose=true target=examples \ CC="%{__cc}" %{__make} verbose=true target=docs # Put them back so the install doesn't fail mv libNOTvpx.a libvpx.a mv libNOTvpx_g.a libvpx_g.a %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT{%{_bindir},%{_includedir}/vpx,%{_libdir}} install -d outdir %{__make} -C build install \ DIST_DIR=$(pwd)/outdir install -p outdir/bin/* $RPM_BUILD_ROOT%{_bindir} install -p build/libvpx.so.* $RPM_BUILD_ROOT%{_libdir} ln -s libvpx.so.0.0.0 $RPM_BUILD_ROOT%{_libdir}/libvpx.so.0 ln -s libvpx.so.0.0.0 $RPM_BUILD_ROOT%{_libdir}/libvpx.so cp -a outdir/include/vpx/*.h $RPM_BUILD_ROOT%{_includedir}/vpx cp -a outdir/lib/*.a $RPM_BUILD_ROOT%{_libdir} %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(644,root,root,755) %attr(755,root,root) %{_bindir}/* %attr(755,root,root) %{_libdir}/libvpx.so.*.*.* %attr(755,root,root) %ghost %{_libdir}/libvpx.so.0 %files devel %defattr(644,root,root,755) %attr(755,root,root) %{_libdir}/libvpx.so %{_includedir}/vpx %files static %defattr(644,root,root,755) %{_libdir}/libvpx.a