12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- Summary: Scripts for converting XML to roff or HTML
- Summary(ja): XML から roff または HTML に変換するためのスクリプト
- Name: xmltoman
- Version: 0.4
- Release: 1%{?_dist_release}
- Group: Applications/Publishing
- License: GPLv2+
- URL: http://sourceforge.net/projects/xmltoman/
- Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
- Patch0: xmltoman-0.3-timestamps.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: perl(XML::Parser)
- BuildArch: noarch
- %description
- This package provides xmltoman and xmlmantohtml scripts, to compile
- the xml representation of manual page to either roff source, or HTML
- (while providing the CSS stylesheet for eye-candy look). XSL stylesheet
- for doing rougly the same job is provided.
- %prep
- %setup -q
- %patch0 -p1 -b .timestamps
- %build
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install PREFIX=%{_prefix} DESTDIR=$RPM_BUILD_ROOT
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %{_bindir}/xmltoman
- %{_bindir}/xmlmantohtml
- %{_datadir}/xmltoman
- %doc COPYING README
- %changelog
- * Thu Jul 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4-1
- - initial build for Vine Linux
- * Thu May 29 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.4-1
- - New upstream release
- * Wed Mar 12 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.3-2
- - Preserve timestamps, sanitize requires (thanks to Parag AN)
- * Sun Mar 09 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.3-1
- - Initial packaging attempt
|