source: projects/specs/branches/6/c/camlp5/camlp5-vl.spec @ 6184

Revision 6184, 2.1 KB checked in by inagaki, 12 years ago (diff)

update: camlp5, ledit

Line 
1%define docver    6.00       
2
3Name:             camlp5
4Summary:          a preprocessor-pretty-printer of ocaml
5Version:          6.05
6Release:          1%{?_dist_release}
7
8License:          distributable
9Group:            Development/Languages
10URL:              http://pauillac.inria.fr/camlimages/
11
12Source0:          http://pauillac.inria.fr/~ddr/camlp5/distrib/src/%{name}-%{version}.tgz
13Source1:          http://pauillac.inria.fr/~ddr/camlp5/doc/ps/%{name}-%{docver}.ps
14
15BuildRoot:        %{_tmppath}/%{name}-%{version}-root
16BuildRequires:    ocaml
17Requires:         ocaml
18
19Vendor:           Project Vine
20Distribution:     Vine Linux
21
22Packager:         inagaki
23
24%description
25Camlp5 is a preprocessor-pretty-printer of OCaml.
26
27%prep
28%setup -q
29cp -p %{SOURCE1} .
30
31%build
32./configure \
33        --prefix %{_prefix} \
34        --libdir %{_libdir}/ocaml \
35        --mandir %{_mandir} \
36        --transitional
37
38make world.opt
39
40%install
41if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
42make install DESTDIR=$RPM_BUILD_ROOT
43
44%clean
45if [ -d $RPM_BUILD_ROOT ]; then %{__rm} -rf $RPM_BUILD_ROOT; fi
46
47%files
48%defattr (-,root,root)
49%doc CHANGES LICENSE README
50%doc %{name}-%{docver}.ps
51%{_bindir}/*
52%{_libdir}/ocaml/camlp5
53%{_mandir}/man1/*
54
55%changelog
56* Wed May 16 2012 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 6.05-1
57- new upstream release
58- rebuilt with ocaml 3.12.1
59
60* Fri Apr 16 2010 Shu KONNO <owa@bg.wakwak.com> - 5.11-2
61- rebuilt with new tool chain and ocaml 3.11.0-2
62
63* Sat May  9 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.11-1
64- new upstream release
65- built with ocaml 3.11.0
66- added Packager tag
67
68* Sun Aug  3 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.08-1
69- new upstream release
70- built with ocaml 3.10.2
71
72* Wed Feb  6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.07-0vl2
73- rebuilt for VineSeed
74
75* Wed Feb  6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.07-0vl1
76- new upstream release
77- rebuilt with Ocaml 3.10.1
78
79* Sun Dec 30 2007 Shu KONNO <owa@bg.wakwak.com> - 5.00-0vl2
80- added option libdir to configure
81
82* Sun Sep 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.00-0vl1
83- initial package for Vine Linux
Note: See TracBrowser for help on using the repository browser.