]> git.pld-linux.org Git - packages/libvpx.git/blobdiff - libvpx.spec
drop duplicate yasm check
[packages/libvpx.git] / libvpx.spec
index 209e7c9ce5f2ab16aec4e105cf6b3359b09c8235..02880f7cfd3147e5eb96691fe7b4743e83f5fb53 100644 (file)
@@ -1,6 +1,17 @@
 #
 # Conditional build:
 %bcond_without asm     # x86 assembler
+%bcond_without doc     # don't build doc
+%bcond_without ssse3   # use SSSE3 instructions (Intel since Core2, Via Nano)
+
+%ifnarch %{ix86} %{x8664}
+%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
@@ -11,16 +22,18 @@ License:    BSD
 Group:         Libraries
 #Source0Download: http://code.google.com/p/webm/downloads/list
 #Source0:      https://webm.googlecode.com/files/%{name}-v%{version}.tar.bz2
-Source0:       https://chromium.googlesource.com/webm/libvpx/+archive/v%{version}.tar.gz?/%{name}-%{version}.tar.gz
+# source, but regenerated on each fetch
+#Source0:      https://chromium.googlesource.com/webm/libvpx/+archive/v%{version}.tar.gz?/%{name}-%{version}.tar.gz
+Source0:       %{name}-%{version}.tar.gz
 # Source0-md5: dcf436a5dc8b56bdfb4aec63b2fe6729
 URL:           http://www.webmproject.org/
-BuildRequires: /usr/bin/php
 BuildRequires: doxygen
-BuildRequires: php-common >= 4:5.0.0
-BuildRequires: php-pcre
+BuildRequires: rpmbuild(macros) >= 1.673
 BuildRequires: sed >= 4.0
-%ifarch %{ix86} %{x8664}
 %{?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)
 
@@ -71,7 +84,7 @@ Statyczna biblioteka libvpx.
 
 %prep
 #%setup -q -n %{name}-v%{version}
-%setup -q -c
+%setup -qc
 
 %build
 install -d obj
@@ -86,6 +99,7 @@ CFLAGS="%{rpmcflags} %{rpmcppflags}" \
 %if "%{vpxtarget}" != "%{generic_target}"
        --enable-shared \
 %endif
+       %{!?with_ssse3:--disable-ssse3} \
        --disable-optimizations \
        --enable-vp8 \
        --enable-postproc \
@@ -101,7 +115,10 @@ CFLAGS="%{rpmcflags} %{rpmcppflags}" \
        CC="%{__cc}" \
        LD="%{__cc}" \
        LDFLAGS="%{rpmldflags} -L."
+
+%if %{with doc}
 %{__make} verbose=true target=docs
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
This page took 0.071904 seconds and 4 git commands to generate.