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

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

import VineSeed package specs

Line 
1Name:             camlp5
2Version:          5.11
3Release:          1%{?_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* Sat May  9 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.11-1
52- new upstream release
53- built with ocaml 3.11.0
54- added Packager tag
55
56* Sun Aug  3 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.08-1
57- new upstream release
58- built with ocaml 3.10.2
59
60* Wed Feb  6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.07-0vl2
61- rebuilt for VineSeed
62
63* Wed Feb  6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.07-0vl1
64- new upstream release
65- rebuilt with Ocaml 3.10.1
66
67* Sun Dec 30 2007 Shu KONNO <owa@bg.wakwak.com> - 5.00-0vl2
68- added option libdir to configure
69
70* Sun Sep 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.00-0vl1
71- initial package for Vine Linux
Note: See TracBrowser for help on using the repository browser.