forked from pool/libwebp
efffc5e173
- Update to new upstream release 0.3.0 * WebPINewRGB/WebPINewYUVA accept being passed a NULL output buffer and will perform auto-allocation. * Default filter option is now "-strong -f 60" * Encoding speed-up for lossy methods 3 to 6 * Alpha encoding can be done in parallel to lossy using `cwebp -mt ...` * Color profile, metadata (XMP/EXIF) and animation support in the container was finalized. * Various NEON assembly additions - Tool updates / additions: * gif2webp added * vwebp given color profile & animation support * cwebp can preserve color profile / metadata with "-metadata" OBS-URL: https://build.opensuse.org/request/show/171056 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwebp?expand=0&rev=12
114 lines
3.4 KiB
RPMSpec
114 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package libwebp
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: libwebp
|
|
%define lname libwebp4
|
|
Version: 0.3.0
|
|
Release: 0
|
|
Url: https://developers.google.com/speed/webp/
|
|
Summary: Library and tools for the WebP graphics format
|
|
License: BSD-3-Clause
|
|
Group: System/Libraries
|
|
|
|
#DL-URL: https://webp.googlecode.com/files/libwebp-0.3.0.tar.gz
|
|
Source: %name-%version.tar.xz
|
|
Source2: baselibs.conf
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: libpng-devel
|
|
BuildRequires: libtiff-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: xz
|
|
|
|
%description
|
|
WebP is an image format that does lossy compression of digital
|
|
photographic images. WebP consists of a codec based on VP8, and a
|
|
container based on RIFF. Webmasters, web developers and browser
|
|
developers can use WebP to compress, archive and distribute digital
|
|
images more efficiently.
|
|
|
|
%package tools
|
|
Summary: The WebP command line tools
|
|
Group: Productivity/Archiving/Compression
|
|
#O/P added in 12.2
|
|
Obsoletes: webp-tools < %version-%release
|
|
Provides: webp-tools = %version-%release
|
|
|
|
%description tools
|
|
WebP is an image format that does lossy compression of digital
|
|
photographic images. WebP consists of a codec based on VP8, and a
|
|
container based on RIFF. Webmasters, web developers and browser
|
|
developers can use WebP to compress, archive and distribute digital
|
|
images more efficiently.
|
|
|
|
%package -n %lname
|
|
Summary: Library for the WebP graphics format
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
WebP is an image format that does lossy compression of digital
|
|
photographic images. WebP consists of a codec based on VP8, and a
|
|
container based on RIFF. Webmasters, web developers and browser
|
|
developers can use WebP to compress, archive and distribute digital
|
|
images more efficiently.
|
|
|
|
%package devel
|
|
Summary: Development files for libwebp, a library for the WebP format
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
WebP is an image format that does lossy compression of digital
|
|
photographic images. WebP consists of a codec based on VP8, and a
|
|
container based on RIFF. Webmasters, web developers and browser
|
|
developers can use WebP to compress, archive and distribute digital
|
|
images more efficiently.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
b="%buildroot";
|
|
make install DESTDIR="$b";
|
|
rm -f "$b/%_libdir"/*.la;
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files -n libwebp-tools
|
|
%defattr(-,root,root)
|
|
%_bindir/*
|
|
%_mandir/man*/*
|
|
|
|
%files -n %lname
|
|
%defattr(-,root,root)
|
|
%_libdir/libwebp.so.4*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_libdir/libwebp.so
|
|
%_includedir/webp
|
|
%_libdir/pkgconfig/libwebp.pc
|
|
|
|
%changelog
|