* Remove call to deprecated function in ffmpeg for easier
compilation on modern systems.
* Fix a crash in terminal background color detection that can
happen over a slow ssh connection.
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/timg?expand=0&rev=14
80 lines
2.2 KiB
RPMSpec
80 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package timg
|
|
#
|
|
# Copyright (c) 2025 mantarimay
|
|
# Copyright (c) 2024 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 force_gcc_version 13
|
|
Name: timg
|
|
Version: 1.6.3
|
|
Release: 0
|
|
Summary: Terminal image viewer
|
|
License: GPL-2.0-only
|
|
URL: https://github.com/hzeller/timg
|
|
Source: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
BuildRequires: cmake
|
|
%if 0%{?suse_version} < 1600
|
|
BuildRequires: gcc%{?force_gcc_version}-c++
|
|
%else
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: qoi-devel
|
|
%endif
|
|
BuildRequires: pkgconfig(GraphicsMagick++)
|
|
BuildRequires: pkgconfig(libavcodec)
|
|
BuildRequires: pkgconfig(libavdevice)
|
|
BuildRequires: pkgconfig(libavfilter)
|
|
BuildRequires: pkgconfig(libavutil)
|
|
BuildRequires: pkgconfig(libdeflate)
|
|
BuildRequires: pkgconfig(libexif)
|
|
BuildRequires: pkgconfig(librsvg-2.0)
|
|
BuildRequires: pkgconfig(libsixel)
|
|
BuildRequires: pkgconfig(libswresample)
|
|
BuildRequires: pkgconfig(libswscale)
|
|
BuildRequires: pkgconfig(libturbojpeg)
|
|
BuildRequires: pkgconfig(poppler-glib)
|
|
BuildRequires: pkgconfig(stb)
|
|
|
|
%description
|
|
A user-friendly terminal image viewer that uses graphic capabilities of
|
|
terminals (Sixel, Kitty or iterm2), or 24-Bit color capabilities and unicode
|
|
character blocks if these are not available.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
%if 0%{?suse_version} < 1600
|
|
export CXX="g++-%{?force_gcc_version}"
|
|
%endif
|
|
%cmake \
|
|
%if 0%{?suse_version} < 1600
|
|
-DWITH_QOI_IMAGE=OFF \
|
|
%endif
|
|
-DTIMG_VERSION_FROM_GIT=OFF
|
|
%{nil}
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README*
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
|
|
|
%changelog
|