source: projects/specs/trunk/x/xmltoman/xmltoman-vl.spec @ 521

Revision 521, 1.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary:        Scripts for converting XML to roff or HTML
2Summary(ja):    XML から roff または HTML に変換するためのスクリプト
3Name:           xmltoman
4Version:        0.4
5Release:        1%{?_dist_release}
6
7Group:          Applications/Publishing
8License:        GPLv2+
9URL:            http://sourceforge.net/projects/xmltoman/
10Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
11Patch0:         xmltoman-0.3-timestamps.patch
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
14BuildRequires:  perl(XML::Parser)
15BuildArch:      noarch
16
17%description
18This package provides xmltoman and xmlmantohtml scripts, to compile
19the xml representation of manual page to either roff source, or HTML
20(while providing the CSS stylesheet for eye-candy look). XSL stylesheet
21for doing rougly the same job is provided.
22
23
24%prep
25%setup -q
26%patch0 -p1 -b .timestamps
27
28
29%build
30make %{?_smp_mflags}
31
32
33%install
34rm -rf $RPM_BUILD_ROOT
35make install PREFIX=%{_prefix} DESTDIR=$RPM_BUILD_ROOT
36
37
38%clean
39rm -rf $RPM_BUILD_ROOT
40
41
42%files
43%defattr(-,root,root,-)
44%{_bindir}/xmltoman
45%{_bindir}/xmlmantohtml
46%{_datadir}/xmltoman
47%doc COPYING README
48
49
50%changelog
51* Thu Jul 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4-1
52- initial build for Vine Linux
53
54* Thu May 29 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.4-1
55- New upstream release
56
57* Wed Mar 12 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.3-2
58- Preserve timestamps, sanitize requires (thanks to Parag AN)
59
60* Sun Mar 09 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.3-1
61- Initial packaging attempt
Note: See TracBrowser for help on using the repository browser.