]> git.pld-linux.org Git - packages/coq.git/blob - coq.spec
- 8.3pl1
[packages/coq.git] / coq.spec
1 Summary:        The Coq Proof Assistant
2 Summary(pl.UTF-8):      Coq - narzędzie pomagające w udowadnianiu
3 Name:           coq
4 Version:        8.3pl1
5 Release:        0.1
6 License:        GPL
7 Group:          Applications/Math
8 Vendor:         INRIA Rocquencourt
9 Source0:        http://coq.inria.fr/V%{version}/files/%{name}-%{version}.tar.gz
10 # Source0-md5:  1869d22b337f5da59ba3bbe1433f9a3b
11 Source1:        coqide.desktop
12 Source2:        coqide.xpm
13 Patch0:         %{name}-lablgtk2.patch
14 URL:            http://coq.inria.fr/
15 BuildRequires:  bash
16 BuildRequires:  emacs
17 BuildRequires:  hevea
18 BuildRequires:  netpbm-progs
19 BuildRequires:  ocaml >= 3.09.0
20 BuildRequires:  camlp5 >= 5.01
21 BuildRequires:  ocaml-lablgtk2-devel >= 2.12.0
22 BuildRequires:  sed >= 4.0
23 BuildRequires:  texlive-latex-comment
24 BuildRequires:  texlive-format-pdflatex
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 Coq is a proof assistant which:
29  - allows to handle calculus assertions,
30  - check mechanically proofs of these assertions,
31  - helps to find formal proofs,
32  - extracts a certified program from the constructive proof of its
33    formal specification.
34
35 %description -l pl.UTF-8
36 Coq to narzędzie pomagające w udowadnianiu, które:
37 - pozwala uporać się z twierdzeniami dotyczącymi rachunku
38   różniczkowego,
39 - mechanicznie sprawdzać dowody tych twierdzeń,
40 - pomagać w znalezieniu formalnych dowodów,
41 - wyciągać program o dowiedzionej poprawności z konstruktywnego
42   dowodu jego formalnej specyfikacji.
43
44 %prep
45 %setup -q
46 %patch0 -p1
47
48 %{__sed} -i -e 's|#!/bin/sh|#!/bin/bash|' test-suite/check
49
50 %build
51 ./configure \
52         -bindir %{_bindir} \
53         -libdir %{_libdir}/coq \
54         -mandir %{_mandir} \
55         -docdir %{_datadir}/coq/doc \
56         -emacs emacs \
57         -browser 'iceweasel -remote "OpenURL(%s,new-tab)" || iceweasel %s &' \
58         -emacslib %{_datadir}/emacs/site-lisp \
59         -opt \
60         --coqdocdir %{_datadir}/texmf/tex/latex/misc \
61         --coqide opt
62
63 %{__make} -j1 world check       # Use native coq to compile theories
64
65 %install
66 rm -rf $RPM_BUILD_ROOT
67 install -d $RPM_BUILD_ROOT{%{_desktopdir},%{_pixmapsdir}}
68
69 %{__make} -e install \
70         COQINSTALLPREFIX=$RPM_BUILD_ROOT/
71 # To install only locally the binaries compiled with absolute paths
72
73 install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
74 install %{SOURCE2} $RPM_BUILD_ROOT%{_pixmapsdir}
75
76 %clean
77 rm -rf $RPM_BUILD_ROOT
78
79 %files
80 %defattr(644,root,root,755)
81 %attr(755,root,root) %{_bindir}/coq-interface
82 %attr(755,root,root) %{_bindir}/coq-interface.opt
83 %attr(755,root,root) %{_bindir}/coq-tex
84 %attr(755,root,root) %{_bindir}/coq_makefile
85 %attr(755,root,root) %{_bindir}/coqc
86 %attr(755,root,root) %{_bindir}/coqdep
87 %attr(755,root,root) %{_bindir}/coqdoc
88 %attr(755,root,root) %{_bindir}/coqide*
89 %attr(755,root,root) %{_bindir}/coqmktop
90 %attr(755,root,root) %{_bindir}/coqtop
91 %attr(755,root,root) %{_bindir}/coqtop.byte
92 %attr(755,root,root) %{_bindir}/coqtop.opt
93 %attr(755,root,root) %{_bindir}/coqwc
94 %attr(755,root,root) %{_bindir}/gallina
95 %attr(755,root,root) %{_bindir}/parser
96 %attr(755,root,root) %{_bindir}/parser.opt
97 %dir %{_libdir}/coq
98 %{_libdir}/coq/*
99 %{_datadir}/emacs/site-lisp/coq.el
100 %{_datadir}/emacs/site-lisp/coq-inferior.el
101 %{_mandir}/man1/coq-tex.1*
102 %{_mandir}/man1/coqdep.1*
103 %{_mandir}/man1/gallina.1*
104 %{_mandir}/man1/coqc.1*
105 %{_mandir}/man1/coqtop.1*
106 %{_mandir}/man1/coqtop.byte.1*
107 %{_mandir}/man1/coqtop.opt.1*
108 %{_mandir}/man1/coq_makefile.1*
109 %{_mandir}/man1/coqmktop.1*
110 %{_mandir}/man1/coq-interface.1*
111 %{_mandir}/man1/parser.1*
112 %{_mandir}/man1/coqdoc.1*
113 %{_mandir}/man1/coqwc.1*
114 %{_datadir}/texmf/tex/latex/misc/coqdoc.sty
115 %{_desktopdir}/coqide.desktop
116 %{_pixmapsdir}/coqide.xpm
This page took 0.082424 seconds and 3 git commands to generate.