Dave Plater
fcb0e32b3a
Update to 2.14 OBS-URL: https://build.opensuse.org/request/show/1034437 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/lcms2?expand=0&rev=80
134 lines
3.6 KiB
RPMSpec
134 lines
3.6 KiB
RPMSpec
#
|
|
# spec file for package lcms2
|
|
#
|
|
# Copyright (c) 2022 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/
|
|
#
|
|
|
|
|
|
Name: lcms2
|
|
Version: 2.14
|
|
Release: 0
|
|
Summary: Little CMS Engine - A color management library and tools
|
|
License: MIT
|
|
Group: Productivity/Graphics/Other
|
|
URL: https://www.littlecms.com/
|
|
Source0: https://github.com/mm2/Little-CMS/releases/download/lcms%{version}/lcms2-%{version}.tar.gz
|
|
Source1: baselibs.conf
|
|
Patch1: lcms2-ocloexec.patch
|
|
Patch2: lcms2-visibility.patch
|
|
%if 0%{?suse_version}
|
|
BuildRequires: autoconf
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: libtiff-devel
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: zlib-devel
|
|
%endif
|
|
%if 0%{?fedora_version}
|
|
BuildRequires: gcc
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: libtiff-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: zlib-devel
|
|
%endif
|
|
%if 0%{?mandriva_version}
|
|
BuildRequires: gcc
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: libtiff-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: zlib-devel
|
|
%endif
|
|
|
|
%description
|
|
Littlecms is a small speed optimized color management engine.
|
|
Little CMS intends to be a small-footprint color management engine
|
|
with a special focus on accuracy and performance. It uses the International
|
|
Color Consortium standard (ICC), which is the modern standard when
|
|
regarding to color management. The ICC specification is widely used and is
|
|
referred to in many International and other de-facto standards.
|
|
|
|
%package -n liblcms2-2
|
|
Summary: Libraries for the Little CMS Engine
|
|
Group: System/Libraries
|
|
|
|
%description -n liblcms2-2
|
|
Little CMS Engine - A color management library and tools.
|
|
|
|
%package -n liblcms2-devel
|
|
Summary: Include Files and Libraries Mandatory for Development
|
|
Group: Development/Libraries/C and C++
|
|
Requires: glibc-devel
|
|
Requires: liblcms2-2 = %{version}
|
|
|
|
%description -n liblcms2-devel
|
|
This package contains all necessary include files and libraries needed
|
|
to develop applications that require these.
|
|
|
|
%package -n liblcms2-doc
|
|
Summary: User and developer documentation for lcms2
|
|
Group: Documentation/Other
|
|
BuildArch: noarch
|
|
|
|
%description -n liblcms2-doc
|
|
This package contains user and developer documentation for lcms2.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
chmod a-x doc/* COPYING AUTHORS
|
|
|
|
%build
|
|
|
|
autoreconf -fiv
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
export CXXFLAGS="%{optflags} -fno-strict-aliasing"
|
|
|
|
# FIXME --without-threads is a workaround for a linker error
|
|
%configure --disable-static --without-threads
|
|
|
|
%make_build
|
|
|
|
%check
|
|
%make_build check
|
|
%make_build utils
|
|
|
|
%install
|
|
%make_install
|
|
|
|
rm %{buildroot}/%{_libdir}/liblcms2.la
|
|
|
|
%post -n liblcms2-2 -p /sbin/ldconfig
|
|
%postun -n liblcms2-2 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc AUTHORS
|
|
%{_bindir}/*
|
|
%{_mandir}/man?/*.*
|
|
|
|
%files -n liblcms2-2
|
|
%{_libdir}/liblcms2.so.2*
|
|
|
|
%files -n liblcms2-devel
|
|
|
|
%{_includedir}/*.h
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%files -n liblcms2-doc
|
|
%doc doc/*pdf
|
|
|
|
%changelog
|