]> git.pld-linux.org Git - packages/libvpx.git/blobdiff - libvpx.spec
- fixed build
[packages/libvpx.git] / libvpx.spec
index ad741479fd86b6b961ba9f45e0dc7decd59f6afb..b1ddb49959e85ea39460411b61f9725f7c7b913a 100644 (file)
+#
+# 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}
+%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.0
+Version:       1.4.0
 Release:       0.1
 License:       BSD
 Group:         Libraries
-Source0:       http://webm.googlecode.com/files/%{name}-%{version}.tar.bz2
-# Source0-md5: 9eb8e818d2f3263623c258fe66924082
+# Source in git web, but regenerated on each fetch, so use gentoo tarball instead
+#Source0:      https://chromium.googlesource.com/webm/libvpx/+archive/v%{version}.tar.gz?/%{name}-%{version}.tar.gz
+Source0:       http://distfiles.gentoo.org/distfiles/%{name}-%{version}.tar.bz2
+# Source0-md5: 63b1d7f59636a42eeeee9225cc14e7de
 URL:           http://www.webmproject.org/
-BuildRequires: autoconf
-BuildRequires: automake
+BuildRequires: doxygen
+%{?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
+
 %description
 VP8, a high-quality video codec.
 
+%description -l pl.UTF-8
+VP8 - kodek obrazu wysokiej jakości.
+
 %package devel
-Summary:       Header files and develpment documentation for libvpx
+Summary:       Header files for libvpx
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki libvpx
 Group:         Development/Libraries
-Requires:      %{name} = %{epoch}:%{version}-%{release}
+Requires:      %{name} = %{version}-%{release}
 
 %description devel
-Header files and documentation for libvpx.
+Header files for libvpx library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki libvpx.
 
 %package static
 Summary:       Static libvpx library
+Summary(pl.UTF-8):     Statyczna biblioteka libvpx
 Group:         Development/Libraries
-Requires:      %{name}-devel = %{epoch}:%{version}-%{release}
+Requires:      %{name}-devel = %{version}-%{release}
 
 %description static
 Static libvpx library.
 
+%description static -l pl.UTF-8
+Statyczna biblioteka libvpx.
+
 %prep
 %setup -q
 
 %build
-install -d build
-cd build
+install -d obj
+cd obj
 # not autoconf configure
+CC="%{__cc}" \
+CXX="%{__cxx}" \
+CFLAGS="%{rpmcflags} %{rpmcppflags} %{!?with_asm:-DYUV_DISABLE_ASM}" \
 ../configure \
-%ifarch %{x8664}
-       --target=x86_64-linux-gcc \
+%if %{with asm}
+       --as=yasm \
 %endif
-%ifarch %{ix86}
-       --target=x86-linux-gcc \
-%endif
-       --enable-install-docs \
+       --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}
+
+%{__make} verbose=true target=libs \
+       HAVE_GNU_STRIP=no \
+       LDFLAGS="%{rpmldflags}"
+
+%{__make} verbose=true target=examples \
+       LDFLAGS="%{rpmldflags} -L."
+
+%if %{with doc}
+%{__make} verbose=true target=docs
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_includedir}/vpx,%{_libdir}}
+
+%{__make} -C obj verbose=true install \
+       LIBSUBDIR=%{_lib} \
+       DIST_DIR=$RPM_BUILD_ROOT%{_prefix}
+
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libvpx.so.2.0
 
-%{__make} -C build install
+# 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)
-%attr(755,root,root) %{_bindir}/vainfo
-%attr(755,root,root) %{_libdir}/libvpx*.so.*.*
-%attr(755,root,root) %ghost %{_libdir}/libvpx*.so.1
-%dir %{_libdir}/%{name}
-%dir %{_libdir}/%{name}/dri
-%attr(755,root,root) %{_libdir}/%{name}/dri/*.so
+%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.2
 
 %files devel
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libvpx*.so
-%{_includedir}/va
-%{_libdir}/libvpx*.la
-%{_pkgconfigdir}/*.pc
+%attr(755,root,root) %{_libdir}/libvpx.so
+%{_includedir}/vpx
+%{_pkgconfigdir}/vpx.pc
 
 %files static
 %defattr(644,root,root,755)
-%{_libdir}/libvpx*.a
+%{_libdir}/libvpx.a
This page took 0.272707 seconds and 4 git commands to generate.