X-Git-Url: https://git.pld-linux.org/?p=packages%2Flibvpx.git;a=blobdiff_plain;f=libvpx.spec;h=7d002982ba50cfff55b3e840d04e493b884723d6;hp=b984ce3f797638b4cc9d6fc71208ab6d728dc863;hb=5ae0308;hpb=938aec6f021a67f5f2b06de8c8df03513a7e9c90 diff --git a/libvpx.spec b/libvpx.spec index b984ce3..7d00298 100644 --- a/libvpx.spec +++ b/libvpx.spec @@ -1,29 +1,62 @@ # # Conditional build: %bcond_without asm # x86 assembler +%bcond_without doc # don't build doc +%bcond_with tests # build tests (not useful, creates libgtest.a) +%bcond_without ssse3 # use SSSE3 instructions (Intel since Core2, Via Nano) + +%ifnarch %{ix86} %{x8664} x32 +%undefine with_asm +%endif + +%if "%{pld_release}" == "ac" +# not supported by compiler +%undefine with_ssse3 +%endif Summary: VP8, a high-quality video codec Summary(pl.UTF-8): VP8 - kodek obrazu wysokiej jakości Name: libvpx -Version: 0.9.5 -Release: 2 +Version: 1.8.2 +Release: 1 License: BSD Group: Libraries -#Source0-Download: http://code.google.com/p/webm/downloads/list -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 +# original download URL: http://downloads.webmproject.org/releases/webm/index.html +# ...but use github mirror to get consistent tarballs +#Source0Download: https://github.com/webmproject/libvpx/releases +Source0: https://github.com/webmproject/libvpx/archive/v%{version}/%{name}-%{version}.tar.gz +# Source0-md5: 6dbccca688886c66a216d7e445525bce URL: http://www.webmproject.org/ -BuildRequires: /usr/bin/php BuildRequires: doxygen -BuildRequires: php-common >= 4:5.0.0 -BuildRequires: php-pcre -%ifarch %{ix86} %{x8664} -%{?with_asm:BuildRequires: yasm} +%{?with_tests:BuildRequires: libstdc++-devel} +BuildRequires: pkgconfig +BuildRequires: rpmbuild(macros) >= 1.673 +BuildRequires: sed >= 4.0 +%{?with_asm:BuildRequires: yasm >= 0.8} +%if %{with doc} +BuildRequires: %{php_name}-pcre +BuildRequires: %{php_name}-program %endif BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) +%define generic_target generic-gnu +%define vpxtarget %{generic_target} +%ifarch %{x8664} +%define vpxtarget x86_64-linux-gcc +%endif +%ifarch %{ix86} +%define vpxtarget x86-linux-gcc +%endif +%ifarch ppc +%define vpxtarget ppc32-linux-gcc +%endif +%ifarch ppc64 +%define vpxtarget ppc64-linux-gcc +%endif +%ifarch aarch64 +%define vpxtarget arm64-linux-gcc +%endif + %description VP8, a high-quality video codec. @@ -54,41 +87,54 @@ Static libvpx library. %description static -l pl.UTF-8 Statyczna biblioteka libvpx. +%package tools +Summary: VPX decoding/encoding tools +Summary(pl.UTF-8): Narzędzia do kodowania/dekodowania formatu VPX +Group: Applications/Graphics +Requires: %{name} = %{version}-%{release} + +%description tools +VPX decoding/encoding tools. + +%description tools -l pl.UTF-8 +Narzędzia do kodowania/dekodowania formatu VPX. + %prep -%setup -q -n %{name}-v%{version} -%patch0 -p1 +%setup -q %build install -d obj cd obj # not autoconf configure -CFLAGS="%{rpmcflags} %{rpmcppflags}" \ +CC="%{__cc}" \ +CXX="%{__cxx}" \ +CFLAGS="%{rpmcflags} %{rpmcppflags} %{!?with_asm:-DYUV_DISABLE_ASM}" \ ../configure \ %if %{with asm} -%ifarch %{x8664} - --target=x86_64-linux-gcc \ -%endif -%ifarch %{ix86} - --target=x86-linux-gcc \ -%endif -%else - --target=generic-gnu \ + --as=yasm \ %endif + --target=%{vpxtarget} \ --enable-shared \ + %{!?with_ssse3:--disable-ssse3} \ --disable-optimizations \ + --%{!?with_tests:dis}%{?with_tests:en}able-unit-tests \ + --%{!?with_doc:dis}%{?with_doc:en}able-docs \ + --%{!?with_doc:dis}%{?with_doc:en}able-install-docs \ + --enable-vp8 \ --enable-vp8 \ --enable-postproc \ --enable-runtime-cpu-detect %{__make} verbose=true target=libs \ HAVE_GNU_STRIP=no \ - CC="%{__cc}" \ LDFLAGS="%{rpmldflags}" %{__make} verbose=true target=examples \ - CC="%{__cc}" \ - LDFLAGS="%{rpmldflags}" + LDFLAGS="%{rpmldflags} -L." + +%if %{with doc} %{__make} verbose=true target=docs +%endif %install rm -rf $RPM_BUILD_ROOT @@ -98,27 +144,35 @@ install -d $RPM_BUILD_ROOT{%{_bindir},%{_includedir}/vpx,%{_libdir}} LIBSUBDIR=%{_lib} \ DIST_DIR=$RPM_BUILD_ROOT%{_prefix} -rm $RPM_BUILD_ROOT%{_libdir}/libvpx.so.0.? +# redundant minor version symlink (not SONAME) +%{__rm} $RPM_BUILD_ROOT%{_libdir}/libvpx.so.6.2 + +# adjust prefix and libdir +%{__sed} -i -e 's,^prefix=.*,prefix=%{_prefix},;s,^libdir=.*,libdir=%{_libdir},' $RPM_BUILD_ROOT%{_pkgconfigdir}/vpx.pc %clean rm -rf $RPM_BUILD_ROOT -%post -p /sbin/ldconfig +%post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(644,root,root,755) %doc AUTHORS CHANGELOG LICENSE PATENTS README -%attr(755,root,root) %{_bindir}/vpxdec -%attr(755,root,root) %{_bindir}/vpxenc %attr(755,root,root) %{_libdir}/libvpx.so.*.*.* -%attr(755,root,root) %ghost %{_libdir}/libvpx.so.0 +%attr(755,root,root) %ghost %{_libdir}/libvpx.so.6 %files devel %defattr(644,root,root,755) %attr(755,root,root) %{_libdir}/libvpx.so %{_includedir}/vpx +%{_pkgconfigdir}/vpx.pc %files static %defattr(644,root,root,755) %{_libdir}/libvpx.a + +%files tools +%defattr(644,root,root,755) +%attr(755,root,root) %{_bindir}/vpxdec +%attr(755,root,root) %{_bindir}/vpxenc