forked from pool/html2text
Update to version 2.2.3 This is a major improvement over earlier versions: a lot of crashes and memory leaks have been fixed, proper autoconf support has been added and the "-utf8" option is added again for backwards compatibility (lost in version 2.0.0). Additionally, the obsolete openSUSE man page is removed, the packaged version is used instead. I tested it, it works great for me. OBS-URL: https://build.opensuse.org/request/show/1102436 OBS-URL: https://build.opensuse.org/package/show/Publishing/html2text?expand=0&rev=15
73 lines
2.4 KiB
RPMSpec
73 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package html2text
|
|
#
|
|
# Copyright (c) 2023 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: html2text
|
|
Version: 2.2.3
|
|
Release: 0
|
|
Summary: HTML to text converter
|
|
License: GPL-2.0-or-later
|
|
Group: Productivity/Publishing/HTML/Tools
|
|
URL: https://github.com/grobian/html2text
|
|
Source: https://github.com/grobian/html2text/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
BuildRequires: gcc-c++
|
|
Requires(post): update-alternatives
|
|
Requires(preun):update-alternatives
|
|
|
|
%description
|
|
A tool for converting from HTML to text. It can reasonably handle tables.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_build install DESTDIR=%{buildroot}
|
|
# To avoid conflicts with the python3-html2text package
|
|
mv %{buildroot}%{_bindir}/html2text %{buildroot}%{_bindir}/html2text-cpp
|
|
ln -sf %{_sysconfdir}/alternatives/html2text %{buildroot}%{_bindir}/html2text
|
|
mv %{buildroot}%{_mandir}/man1/html2text.1 %{buildroot}%{_mandir}/man1/html2text-cpp.1
|
|
ln -sf %{_sysconfdir}/alternatives/html2text.1.gz %{buildroot}%{_mandir}/man1/html2text.1.gz
|
|
|
|
%check
|
|
%make_build check
|
|
|
|
%post
|
|
update-alternatives --install %{_bindir}/html2text html2text %{_bindir}/html2text-cpp 30 \
|
|
--slave %{_mandir}/man1/html2text.1.gz html2text.1.gz %{_mandir}/man1/html2text-cpp.1.gz
|
|
|
|
%preun
|
|
if [ ! -f %{_bindir}/html2text-cpp ] ; then
|
|
update-alternatives --remove html2text %{_bindir}/html2text-cpp
|
|
fi
|
|
|
|
%files
|
|
%license COPYING
|
|
##%%doc ChangeLog.md
|
|
%{_bindir}/html2text
|
|
%{_bindir}/html2text-cpp
|
|
%ghost %{_sysconfdir}/alternatives/html2text
|
|
%{_mandir}/man1/html2text.1%{?ext_man}
|
|
%{_mandir}/man1/html2text-cpp.1%{?ext_man}
|
|
%ghost %{_sysconfdir}/alternatives/html2text.1.gz
|
|
%{_mandir}/man5/html2textrc.5%{?ext_man}
|
|
|
|
%changelog
|