source: projects/specs/trunk/c/camlp5/camlp5-vl.spec @ 836

Revision 836, 1.8 KB checked in by owa, 14 years ago (diff)

rebuilt with new tool chain

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