# # spec file for package ansifilter # # Copyright (c) 2023 SUSE LLC # Copyright (c) 2013 Pascal Bleser. # # 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/ # %bcond_without gui Name: ansifilter Version: 2.20 Release: 0 Summary: ANSI Terminal Escape Code Converter License: GPL-3.0-or-later Group: Development/Tools/Other URL: http://www.andre-simon.de/ Source: http://www.andre-simon.de/zip/ansifilter-%{version}.tar.bz2 Source2: http://www.andre-simon.de/zip/ansifilter-%{version}.tar.bz2.asc Source99: ansifilter.keyring BuildRequires: gcc-c++ %description Ansifilter handles text files containing ANSI terminal escape codes. The command sequences may be stripped or be interpreted to generate formatted output (HTML, RTF, TeX, LaTeX, BBCode). %if %{with gui} %package gui Summary: ANSI Terminal Escape Code Converter - Qt GUI Group: Development/Tools/Other BuildRequires: libqt5-qtbase-devel Requires: %{name} = %{version} %description gui This package provides a Qt Graphical User Interface to run %{name}. %endif %package bash-completion Summary: Bash completion for %{name} Group: System/Shells Requires: %{name} Requires: bash-completion Supplements: (bash-completion and %{name}) BuildArch: noarch %description bash-completion This package provides Bash command-line completion support for %{name}. %package fish-completion Summary: Fish completion for %{name} Group: System/Shells Requires: %{name} Requires: fish Supplements: (fish and %{name}) BuildArch: noarch %description fish-completion This package provides Fish command-line completion support for %{name}. %package zsh-completion Summary: Zsh completion for %{name} Group: System/Shells Requires: %{name} Requires: zsh Supplements: (zsh and %{name}) BuildArch: noarch %description zsh-completion This package provides Zsh command-line completion support for %{name}. %prep %setup -q %if %{with gui} # Remove generated files which may cause errors when building with # a version of Qt different from the one used to generate the files. rm -v src/qt-gui/moc_*.cpp rm -v src/qt-gui/ui_ansifilter.h %endif %build make \ CFLAGS="%{optflags} -fPIC" \ CXXFLAGS="%{optflags} -std=c++11 -fPIC" \ QMAKE="qmake-qt5" \ all \ %if %{with gui} all-gui \ %endif %{?_smp_mflags} %install make \ DESTDIR=%{buildroot} \ doc_dir="%{_docdir}/%{name}" \ install \ %if %{with gui} install-gui %endif rm %{buildroot}%{_docdir}/%{name}/INSTALL %files %dir %{_docdir}/%{name} %{_docdir}/%{name}/COPYING %{_docdir}/%{name}/ChangeLog.adoc %{_docdir}/%{name}/README.adoc %{_bindir}/ansifilter %{_mandir}/man1/ansifilter.1%{ext_man} %if %{with gui} %files gui %{_bindir}/ansifilter-gui %{_datadir}/applications/ansifilter.desktop %{_datadir}/pixmaps/ansifilter.xpm %endif %files bash-completion %{_datadir}/bash-completion/completions/%{name} %files fish-completion %dir %{_datadir}/fish %dir %{_datadir}/fish/vendor_completions.d %{_datadir}/fish/vendor_completions.d/%{name}.fish %files zsh-completion %dir %{_datadir}/zsh %dir %{_datadir}/zsh/site-functions %{_datadir}/zsh/site-functions/_%{name} %changelog