%{!?_licensedir:%global license %doc} Name: htmlcxx Version: 0.86 Release: 9.1%{?dist} Group: Development/Libraries License: LGPLv2 and GPLv2+ and ASL 2.0 and MIT URL: http://htmlcxx.sourceforge.net/ Summary: A simple non-validating CSS1 and HTML parser for C++ Source0: https://downloads.sourceforge.net/htmlcxx/%{name}-%{version}.tar.gz BuildRequires: intltool BuildRequires: libtool BuildRequires: automake # for autoreconf BuildRequires: autoconf # for config.{guess,sub} BuildRequires: rpm-build BuildRequires: gcc-c++ BuildRequires: make BuildRequires: glibc-common BuildRequires: chrpath BuildRequires: bison flex help2man %description htmlcxx is a simple non-validating html parser library for C++. It allows to fully dump the original html document, character by character, from the parse tree. It also has an intuitive tree traversal API. %package devel Summary: Headers and Static Library for htmlcxx Group: Development/Libraries BuildRequires: pkgconfig Requires: %{name}%{?_isa} = %{version}-%{release} %description devel The htmlcxx-devel package contains libraries and header files for developing applications that use htmlcxx. %prep %autosetup %{__cp} -pf "/usr/lib/rpm"/config.{guess,sub} . # convert to utf8 due rpmlint warning W: file-not-utf8 /usr/share/doc/htmlcxx/AUTHORS # convert to utf8 due rpmlint warning W: file-not-utf8 /usr/share/doc/htmlcxx/README iconv -f iso8859-1 -t utf-8 "AUTHORS" > "AUTHORS.conv" && mv -f "AUTHORS.conv" "AUTHORS" iconv -f iso8859-1 -t utf-8 "README" > "README.conv" && mv -f "README.conv" "README" %build autoreconf -vfi %configure --disable-static --enable-shared %{make_build} %install %{make_install} chrpath --delete "%{buildroot}%{_bindir}/htmlcxx" # remove all '*.la' files find "%{buildroot}" -xtype f -name '*.la' -delete %check %{__make} check %post -n %{name} -p /sbin/ldconfig %postun -n %{name} -p /sbin/ldconfig %files %doc AUTHORS ChangeLog README %license COPYING LGPL_V2 ASF-2.0 %{_bindir}/* %{_datadir}/* %{_libdir}/*.so.* %files devel %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/%{name}.pc %changelog * Sun Mar 03 2019 Tomasz Tomasik - 0.86-9.1 - Rebuild for EL7 * Fri Feb 01 2019 Fedora Release Engineering - 0.86-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Fri Jul 13 2018 Fedora Release Engineering - 0.86-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Feb 07 2018 Fedora Release Engineering - 0.86-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Wed Aug 02 2017 Fedora Release Engineering - 0.86-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 0.86-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering - 0.86-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Wed May 04 2016 Martin Gansser - 0.86-3 - Rebuilt * Wed Feb 03 2016 Fedora Release Engineering - 0.86-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Dec 09 2015 Martin Gansser - 0.86-1 - Update to 0.86 - removed missing-header.patch * Mon Dec 07 2015 Martin Gansser - 0.85-2 - removed BR gcc-c++ - replaced %%RPM_BUILD_ROOT by %%{buildroot} - removed Buildroot tag - use %%{?_smp_mflags} in make - corrected license tag - removed unrecognized configure options and added correct one - added isa to requires tag - removed all '*.la' files - Mark license files as %%license where available * Mon Dec 07 2015 Martin Gansser - 0.85-1 - initial build