88 lines
2.5 KiB
RPMSpec
88 lines
2.5 KiB
RPMSpec
Name: openjpeg2
|
|
Version: 2.3.1
|
|
Release: 1
|
|
Summary: C-Library for JPEG 2000
|
|
License: BSD and MIT
|
|
URL: https://github.com/uclouvain/openjpeg
|
|
Source0: https://github.com/uclouvain/openjpeg/archive/v%{version}/openjpeg-%{version}.tar.gz
|
|
|
|
Patch0: openjpeg2_remove-thirdparty.patch
|
|
Patch1: openjpeg2_opj2.patch
|
|
|
|
BuildRequires: cmake gcc-c++ make zlib-devel libpng-devel libtiff-devel lcms2-devel doxygen
|
|
|
|
Provides: %{name}-tools
|
|
Obsoletes: %{name}-tools
|
|
|
|
%description
|
|
OpenJPEG is an open-source JPEG 2000 codec written in C language. It has been developed in order
|
|
to promote the use of JPEG 2000, a still-image compression standard from the Joint Photographic
|
|
Experts Group (JPEG). Since April 2015, it is officially recognized by ISO/IEC and ITU-T as a
|
|
JPEG 2000 Reference Software.
|
|
|
|
%package devel
|
|
Summary: Development files for OpenJPEG 2
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for developing
|
|
applications that use OpenJPEG 2.
|
|
|
|
%package_help
|
|
|
|
%prep
|
|
%autosetup -n openjpeg-%{version} -p1
|
|
|
|
rm -rf thirdparty
|
|
|
|
%build
|
|
mkdir %{_target_platform}
|
|
pushd %{_target_platform}
|
|
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DOPENJPEG_INSTALL_LIB_DIR=%{_lib} \
|
|
%{?optional_components:-DBUILD_MJ2=ON -DBUILD_JPWL=ON -DBUILD_JPIP=ON -DBUILD_JP3D=ON} \
|
|
-DBUILD_DOC=ON \
|
|
-DBUILD_STATIC_LIBS=OFF \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
%{?runcheck:-DBUILD_TESTING:BOOL=ON -DOPJ_DATA_ROOT=$PWD/../data} \
|
|
..
|
|
popd
|
|
|
|
%make_build VERBOSE=1 -C %{_target_platform}
|
|
|
|
|
|
%install
|
|
%make_install -C %{_target_platform}
|
|
|
|
mv %{buildroot}%{_mandir}/man1/opj_compress.1 %{buildroot}%{_mandir}/man1/opj2_compress.1
|
|
mv %{buildroot}%{_mandir}/man1/opj_decompress.1 %{buildroot}%{_mandir}/man1/opj2_decompress.1
|
|
mv %{buildroot}%{_mandir}/man1/opj_dump.1 %{buildroot}%{_mandir}/man1/opj2_dump.1
|
|
|
|
%ldconfig_scriptlets
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{!?_licensedir:%global license %doc}
|
|
%doc AUTHORS.md
|
|
%license LICENSE
|
|
%{_libdir}/libopenjp2.so.*
|
|
%{_bindir}/opj2*
|
|
%exclude %{_datadir}/doc/
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/openjpeg-2.3/*.h
|
|
%{_libdir}/*.so
|
|
%{_libdir}/openjpeg-2.3/
|
|
%{_libdir}/pkgconfig/libopenjp2.pc
|
|
|
|
%files help
|
|
%defattr(-,root,root)
|
|
%doc %{_target_platform}/doc/html
|
|
%doc NEWS.md README.md THANKS.md
|
|
%{_mandir}/man1/*.1*
|
|
%{_mandir}/man3/*.3*
|
|
|
|
%changelog
|
|
* Thu Sep 19 2019 openEuler Buildteam <buildteam@openeuler.org> - 2.3.1-1
|
|
- Package init
|