- added patches fix build with gcc15 + catimg-gcc15.patch OBS-URL: https://build.opensuse.org/request/show/1284039 OBS-URL: https://build.opensuse.org/package/show/graphics/catimg?expand=0&rev=9
71 lines
1.9 KiB
RPMSpec
71 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package catimg
|
|
#
|
|
# Copyright (c) 2025 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: catimg
|
|
Version: 2.7.0
|
|
Release: 0
|
|
License: MIT
|
|
Summary: Insanely fast image printing in your terminal
|
|
Group: Productivity/Graphics/Viewers
|
|
URL: http://posva.net/shell/retro/bash/2013/05/27/catimg
|
|
Source: https://github.com/posva/catimg/archive/refs/tags/%{version}.tar.gz
|
|
# fix build with gcc15
|
|
Patch0: catimg-gcc15.patch
|
|
BuildRequires: cmake >= 3.5
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
Requires: ImageMagick
|
|
|
|
%description
|
|
catimg is a little program written in C with no dependencies that prints images in terminal. It supports JPEG, PNG and GIF formats. This program was originally a script that did the same by using ImageMagick convert.
|
|
|
|
%package zsh-completion
|
|
Summary: ZSH Completion for %{name}
|
|
Supplements: (%{name} and zsh)
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
The official zsh completion script for catimg.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{name}-%{version}
|
|
|
|
%build
|
|
%cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
|
%make_build
|
|
|
|
%install
|
|
cd build
|
|
%make_install
|
|
|
|
install -Dm 0644 ../completion/_%{name} %{buildroot}/%{_datadir}/zsh/site-functions/_%{name}
|
|
|
|
%check
|
|
%ctest
|
|
|
|
%files
|
|
%{_bindir}/*
|
|
%_mandir/*/*
|
|
%doc README.md
|
|
%license LICENSE
|
|
|
|
%files zsh-completion
|
|
%{_datadir}/zsh
|
|
|
|
%changelog
|