1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
%define name htmlcxx
%define version 0.80
%define release 1
Summary: A html/css1 parser in C++
Name: %{name}
Version: %{version}
Release: %{release}
Source: %{name}-%{version}.tar.gz
License: LGPL
URL: http://htmlcxx.sf.net
BuildArch: i386
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This is a html/css1 parser with politics created trying to mimic mozilla firefox (http://www.mozilla.org) behavior. So you should expect parse trees similar to those create by firefox. However, differently from firefox, htmlcxx does not insert non-existent stuff in your html. Therefore, serializing the DOM tree gives exactly the same bytes contained in the original HTML document.
%prep
rm -Rf $RPM_BUILD_ROOT
%setup
mkdir $RPM_BUILD_ROOT
mkdir $RPM_BUILD_ROOT/usr
%configure --prefix=/usr
%build
make
%install
DESTDIR=$RPM_BUILD_ROOT/ make install
%files
%defattr(755,root,root)
%_libdir
%_bindir
%_datadir
%package dev
Summary: Develoopment headers
%description dev
Development headers
%files dev
%_includedir
%changelog
* Thu Jun 16 2006 Davi de Castro Reis <davi@akwan.com.br>
+ Version 0.80 released
* Thu Jun 9 2005 Davi de Castro Reis <davi@akwan.com.br>
+ Created spec
|