加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CharLS.spec 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
Jason_828e 提交于 2023-07-28 14:25 . updated to 2.4.2
Name: CharLS
Version: 2.4.2
Release: 1
Summary: An optimized implementation of the JPEG-LS standard
License: BSD
URL: https://github.com/team-charls/charls
Source0: https://github.com/team-charls/charls/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: cmake >= 2.6.0
%description
An optimized implementation of the JPEG-LS standard for loss less and
near loss less image compression. JPEG-LS is a low-complexity standard that
matches JPEG 2000 compression ratios. In terms of speed, CharLS outperforms
open source and commercial JPEG LS implementations.
JPEG-LS (ISO-14495-1/ITU-T.87) is a standard derived from the Hewlett Packard
LOCO algorithm. JPEG LS has low complexity (meaning fast compression) and high
compression ratios, similar to JPEG 2000. JPEG-LS is more similar to the old
loss less JPEG than to JPEG 2000, but interestingly the two different techniques
result in vastly different performance characteristics.
%package devel
Summary: Libraries and headers for CharLS
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
CharLS Library Header Files and Link Libraries.
%prep
%autosetup -n charls-%{version}
%{__rm} CharLS*.sln* -v
%build
%cmake -DBUILD_SHARED_LIBS:BOOL=ON\
-DCMAKE_BUILD_TYPE:STRING="Release"\
-DCMAKE_VERBOSE_MAKEFILE=ON\
-DBUILD_TESTING=ON
%install
make install DESTDIR=$RPM_BUILD_ROOT
%check
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.
ctest .
%ldconfig_scriptlets
%files
%{_libdir}/*
%files devel
%{_includedir}/charls/*
%changelog
* Fri Jul 28 2023 chenzixuan <chenzixuan@kylinos.cn> - 2.4.2-1
- upgrade upstream version 2.4.2
* Tue Mar 22 2022 tanyulong <tanyulong@kylinos.cn> - 2.0.0-1
- upgrade upstream version 2.0.0
* Thu Aug 27 2020 geyanan <geyanan2@huawei.com> - 1.0-1
- package init
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化