-
-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1694 re-add webp codec with better speed and quality tuning
git-svn-id: https://xpra.org/svn/Xpra/trunk@17468 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
24 changed files
with
1,000 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
Name: libwebp-xpra | ||
Version: 0.6.0 | ||
Release: 1%{?dist} | ||
Summary: WebP library and conversion tools for xpra | ||
|
||
Group: Applications/Multimedia | ||
License: BSD | ||
URL: https://developers.google.com/speed/webp/ | ||
Source0: http://downloads.webmproject.org/releases/webp/libwebp-%{version}.tar.gz | ||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) | ||
|
||
BuildRequires: gcc | ||
BuildRequires: autoconf | ||
BuildRequires: automake | ||
BuildRequires: libtool | ||
|
||
%description | ||
WebP library and conversion tools, private version for Xpra | ||
|
||
|
||
%package devel | ||
Summary: Development files for the webp library | ||
Group: Development/libraries | ||
Requires: %{name} = %{version} | ||
Requires: pkgconfig | ||
|
||
%description devel | ||
This package contains the files required to develop programs that will encode | ||
WebP images. | ||
|
||
%prep | ||
%if ! 0%{?el7} | ||
echo "this package is only meant to be built for RHEL / CentOS 7.x" | ||
exit 1 | ||
%endif | ||
%setup -q -n libwebp-%{version} | ||
|
||
|
||
%build | ||
./configure \ | ||
--prefix="%{_prefix}" \ | ||
--libdir="%{_libdir}/xpra" \ | ||
--includedir="%{_includedir}/xpra" \ | ||
--enable-shared | ||
|
||
make %{?_smp_mflags} | ||
|
||
|
||
%install | ||
rm -rf %{buildroot} | ||
make install DESTDIR=%{buildroot} | ||
|
||
rm -rf %{buildroot}/usr/bin | ||
rm -rf %{buildroot}/usr/share | ||
|
||
|
||
%clean | ||
rm -rf %{buildroot} | ||
|
||
|
||
%files | ||
%defattr(-,root,root,-) | ||
%doc AUTHORS COPYING PATENTS README | ||
%{_libdir}/xpra/libwebp.so.* | ||
|
||
%files devel | ||
%defattr(-,root,root,-) | ||
%{_includedir}/xpra/webp/ | ||
%{_libdir}/xpra/libwebp.a | ||
%{_libdir}/xpra/libwebp.la | ||
%{_libdir}/xpra/libwebp.so | ||
%{_libdir}/xpra/pkgconfig/libwebp.pc | ||
|
||
|
||
%changelog | ||
* Wed Nov 22 2017 Antoine Martin <antoine@devloop.org.uk> 0.6.0-1 | ||
- new upstream release | ||
|
||
* Fri Nov 13 2015 Antoine Martin <antoine@devloop.org.uk> 0.4.4-1 | ||
- new upstream release | ||
|
||
* Tue Mar 31 2015 Antoine Martin <antoine@devloop.org.uk> 0.4.3-1 | ||
- new upstream release | ||
|
||
* Sat Oct 25 2014 Antoine Martin <antoine@devloop.org.uk> 0.4.2-1 | ||
- new upstream release | ||
|
||
* Mon Aug 18 2014 Antoine Martin <antoine@devloop.org.uk> 0.4.1-1 | ||
- Update to 0.4.1 | ||
|
||
* Thu Jul 31 2014 Antoine Martin <antoine@devloop.org.uk> | ||
- configure doesn't support --enable-pic | ||
|
||
* Mon Jul 14 2014 Matthew Gyurgyik <pyther@pyther.net> | ||
- initial package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.