File jbig2dec.spec of Package jbig2dec
#
# spec file for package jbig2dec
#
# Copyright (c) 2023 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define _sover 0
Name: jbig2dec
Version: 0.20
Release: 0
Summary: JBIG2 Decoder Utility
License: AGPL-3.0-or-later
URL: https://jbig2dec.com
Source: https://github.com/ArtifexSoftware/jbig2dec/releases/download/%{version}/%{name}-%{version}.tar.gz
Source1: baselibs.conf
# PATCH-FIX-UPSTREAM fix-for-restore-abi.patch deb#940605 -- Restores the ABI export of jbig2_ctx_new
Patch1: fix-for-restore-abi.patch
# CVE-2023-46361 [bsc#1216729], SEGV vulnerability via jbig2_error at /jbig2dec/jbig2.c.
Patch2: jbig2dec-CVE-2023-46361.patch
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: pkgconfig(libpng)
%description
jbig2dec is a decoder utility implementing the JBIG2 bi-level image compression
spec. Also known as ITU T.88 and ISO IEC 14492, and included by reference in
Adobe's PDF version 1.4 and later.
%package -n libjbig2dec%{_sover}
Summary: JBIG2 Decoder Library
%description -n libjbig2dec%{_sover}
jbig2dec is a decoder utility implementing the JBIG2 bi-level image compression
spec. Also known as ITU T.88 and ISO IEC 14492, and included by reference in
Adobe's PDF version 1.4 and later.
%package devel
Summary: JBIG2 decoder development files
Requires: libjbig2dec0 = %{version}
%description devel
This package contains development files needed for developing applications
based on libjbig2dec.
%prep
%autosetup -p1
%build
autoreconf -fiv
%configure \
--disable-static \
--with-libpng
%make_build
%install
%make_install
# Install missing header
install -c -m 644 memento.h %{buildroot}%{_includedir}/memento.h
rm %{buildroot}%{_libdir}/libjbig2dec.la
%post -n libjbig2dec0 -p /sbin/ldconfig
%postun -n libjbig2dec0 -p /sbin/ldconfig
%files
%doc CHANGES README
%license COPYING LICENSE
%{_bindir}/jbig2dec
%{_mandir}/man1/jbig2dec.1%{?ext_man}
%files -n libjbig2dec%{_sover}
%{_libdir}/libjbig2dec.so.*
%files devel
%{_includedir}/jbig2.h
%{_includedir}/memento.h
%{_libdir}/libjbig2dec.so
%{_libdir}/pkgconfig/%{name}.pc
%changelog