This commit is contained in:
Tom Callaway 2015-04-06 15:30:29 -04:00
parent 9cabd1a914
commit f1e88794ea
3 changed files with 28 additions and 22 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ libvpx-0.9.1.tar.bz2
/libvpx-v1.1.0.tar.bz2 /libvpx-v1.1.0.tar.bz2
/libvpx-v1.2.0.tar.bz2 /libvpx-v1.2.0.tar.bz2
/libvpx-v1.3.0.tar.bz2 /libvpx-v1.3.0.tar.bz2
/v1.4.0.tar.gz

View File

@ -1,18 +1,17 @@
%global majorver 1 %global somajor 2
%global minorver 3 %global sominor 0
%global tinyver 0 %global sotiny 0
%global soversion %{somajor}.%{sominor}.%{sotiny}
Name: libvpx Name: libvpx
Summary: VP8 Video Codec SDK Summary: VP8 Video Codec SDK
Version: %{majorver}.%{minorver}.%{tinyver} Version: 1.4.0
%global soversion %{version} Release: 1%{?dist}
Release: 6%{?dist}
License: BSD License: BSD
Group: System Environment/Libraries Group: System Environment/Libraries
Source0: http://webm.googlecode.com/files/%{name}-v%{version}.tar.bz2 Source0: https://libvpx.webm.googlecode.com/archive/v%{version}.tar.gz
# Thanks to debian. # Thanks to debian.
Source2: libvpx.ver Source2: libvpx.ver
Patch0: Bug-fix-in-ssse3-quantize-function.patch
URL: http://www.webmproject.org/tools/vp8-sdk/ URL: http://www.webmproject.org/tools/vp8-sdk/
%ifarch %{ix86} x86_64 %ifarch %{ix86} x86_64
BuildRequires: yasm BuildRequires: yasm
@ -43,8 +42,7 @@ A selection of utilities and tools for VP8, including a sample encoder
and decoder. and decoder.
%prep %prep
%setup -q -n %{name}-v%{version} %setup -q -n libvpx.webm-v%{version}
%patch0 -p1 -b .patch0
%build %build
%ifarch %{ix86} %ifarch %{ix86}
@ -100,7 +98,7 @@ sed -i "s|NM=armv7hl-redhat-linux-gnueabi-nm|NM=nm|g" examples-%{vpxtarget}.mk
sed -i "s|NM=armv7hl-redhat-linux-gnueabi-nm|NM=nm|g" docs-%{vpxtarget}.mk sed -i "s|NM=armv7hl-redhat-linux-gnueabi-nm|NM=nm|g" docs-%{vpxtarget}.mk
%endif %endif
make %{?_smp_mflags} verbose=true target=libs make %{?_smp_mflags} verbose=true
%if %{generic_target} %if %{generic_target}
# Manual shared library creation # Manual shared library creation
@ -108,23 +106,23 @@ mkdir tmp
cd tmp cd tmp
ar x ../libvpx_g.a ar x ../libvpx_g.a
cd .. cd ..
gcc -fPIC -shared -pthread -lm -Wl,--no-undefined -Wl,-soname,libvpx.so.%{majorver} -Wl,--version-script,%{SOURCE2} -Wl,-z,noexecstack -o libvpx.so.%{soversion} tmp/*.o gcc -fPIC -shared -pthread -lm -Wl,--no-undefined -Wl,-soname,libvpx.so.%{somajor} -Wl,--version-script,%{SOURCE2} -Wl,-z,noexecstack -o libvpx.so.%{soversion} tmp/*.o
rm -rf tmp rm -rf tmp
%endif %endif
# Temporarily dance the static libs out of the way # Temporarily dance the static libs out of the way
mv libvpx.a libNOTvpx.a # mv libvpx.a libNOTvpx.a
mv libvpx_g.a libNOTvpx_g.a # mv libvpx_g.a libNOTvpx_g.a
# We need to do this so the examples can link against it. # We need to do this so the examples can link against it.
ln -sf libvpx.so.%{soversion} libvpx.so # ln -sf libvpx.so.%{soversion} libvpx.so
make %{?_smp_mflags} verbose=true target=examples CONFIG_SHARED=1 # make %{?_smp_mflags} verbose=true target=examples CONFIG_SHARED=1
make %{?_smp_mflags} verbose=true target=docs # make %{?_smp_mflags} verbose=true target=docs
# Put them back so the install doesn't fail # Put them back so the install doesn't fail
mv libNOTvpx.a libvpx.a # mv libNOTvpx.a libvpx.a
mv libNOTvpx_g.a libvpx_g.a # mv libNOTvpx_g.a libvpx_g.a
%install %install
make DIST_DIR=%{buildroot}%{_prefix} dist make DIST_DIR=%{buildroot}%{_prefix} dist
@ -136,14 +134,18 @@ mv %{buildroot}/usr/docs doc/
install -p libvpx.so.%{soversion} %{buildroot}%{_libdir} install -p libvpx.so.%{soversion} %{buildroot}%{_libdir}
pushd %{buildroot}%{_libdir} pushd %{buildroot}%{_libdir}
ln -sf libvpx.so.%{soversion} libvpx.so ln -sf libvpx.so.%{soversion} libvpx.so
ln -sf libvpx.so.%{soversion} libvpx.so.%{majorver} ln -sf libvpx.so.%{soversion} libvpx.so.%{somajor}
ln -sf libvpx.so.%{soversion} libvpx.so.%{majorver}.%{minorver} ln -sf libvpx.so.%{soversion} libvpx.so.%{somajor}.%{sominor}
popd popd
%endif %endif
pushd %{buildroot} pushd %{buildroot}
# Stuff we don't need. # Stuff we don't need.
rm -rf usr/build/ usr/md5sums.txt usr/lib*/*.a usr/CHANGELOG usr/README rm -rf usr/build/ usr/md5sums.txt usr/lib*/*.a usr/CHANGELOG usr/README
# No, bad google. No treat.
mv usr/bin/examples/* usr/bin/
rm -rf usr/bin/examples
# Rename a few examples # Rename a few examples
mv usr/bin/postproc usr/bin/vp8_postproc mv usr/bin/postproc usr/bin/vp8_postproc
mv usr/bin/simple_decoder usr/bin/vp8_simple_decoder mv usr/bin/simple_decoder usr/bin/vp8_simple_decoder
@ -171,6 +173,9 @@ popd
%{_bindir}/* %{_bindir}/*
%changelog %changelog
* Mon Apr 6 2015 Tom Callaway <spot@fedoraproject.org> - 1.4.0-1
- update to 1.4.0
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6 * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild

View File

@ -1 +1 @@
14783a148872f2d08629ff7c694eb31f libvpx-v1.3.0.tar.bz2 3f80d2461b205c81c05ed1531d256c96 v1.4.0.tar.gz