65 lines
1.5 KiB
RPMSpec
65 lines
1.5 KiB
RPMSpec
Name: optipng
|
|
Version: 0.7.8
|
|
Release: 1
|
|
Summary: PNG optimizer and converter
|
|
|
|
License: Zlib
|
|
URL: http://optipng.sourceforge.net/
|
|
Source0: http://downloads.sourceforge.net/optipng/%{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: zlib-devel libpng-devel
|
|
|
|
%description
|
|
OptiPNG is a PNG optimizer that recompresses image files to a smaller size,
|
|
without losing any information. This program also converts external formats
|
|
(BMP, GIF, PNM and TIFF) to optimized PNG, and performs PNG integrity checks
|
|
and corrections.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
for f in AUTHORS.txt doc/history.txt ; do
|
|
iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f
|
|
done
|
|
|
|
# Ensure system libs and headers are used; as of 0.6.3 pngxtern will use
|
|
# the bundled headers if present even with -with-system-*, causing failures.
|
|
rm -rf src/libpng src/zlib
|
|
|
|
|
|
%build
|
|
%set_build_flags
|
|
./configure -prefix=%{_prefix} -mandir=%{_mandir} \
|
|
-with-system-zlib -with-system-libpng
|
|
%make_build
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
%make_install
|
|
chmod -c 755 $RPM_BUILD_ROOT%{_bindir}/optipng
|
|
|
|
|
|
%check
|
|
%__make test
|
|
|
|
|
|
%files
|
|
%{!?_licensedir:%global license %%doc}
|
|
%license LICENSE.txt
|
|
%doc AUTHORS.txt README.txt doc/*
|
|
%{_bindir}/optipng
|
|
%{_mandir}/man1/optipng.1*
|
|
|
|
|
|
%changelog
|
|
* Fri Nov 24 2023 yaoxin <yao_xin001@hoperun.com> - 0.7.8-1
|
|
- Upgrade to 0.7.8 for fix CVE-2023-43907
|
|
|
|
* Tue Jun 8 2021 wutao <wutao61@huawei.com> - 0.7.7-1
|
|
- upgrade to 0.7.7 to fix CVE-2016-3981 CVE-2016-3982
|
|
|
|
* Thu May 06 2021 wulei <wulei80@huawei.com> 0.7.4 - 1
|
|
- Initial package
|