]> git.pld-linux.org Git - packages/coq.git/blame_incremental - coq.spec
- 8.3pl1
[packages/coq.git] / coq.spec
... / ...
CommitLineData
1Summary: The Coq Proof Assistant
2Summary(pl.UTF-8): Coq - narzędzie pomagające w udowadnianiu
3Name: coq
4Version: 8.3pl1
5Release: 0.1
6License: GPL
7Group: Applications/Math
8Vendor: INRIA Rocquencourt
9Source0: http://coq.inria.fr/V%{version}/files/%{name}-%{version}.tar.gz
10# Source0-md5: 1869d22b337f5da59ba3bbe1433f9a3b
11Source1: coqide.desktop
12Source2: coqide.xpm
13Patch0: %{name}-lablgtk2.patch
14URL: http://coq.inria.fr/
15BuildRequires: bash
16BuildRequires: emacs
17BuildRequires: hevea
18BuildRequires: netpbm-progs
19BuildRequires: ocaml >= 3.09.0
20BuildRequires: camlp5 >= 5.01
21BuildRequires: ocaml-lablgtk2-devel >= 2.12.0
22BuildRequires: sed >= 4.0
23BuildRequires: texlive-latex-comment
24BuildRequires: texlive-format-pdflatex
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%description
28Coq 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
36Coq 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
66rm -rf $RPM_BUILD_ROOT
67install -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
73install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
74install %{SOURCE2} $RPM_BUILD_ROOT%{_pixmapsdir}
75
76%clean
77rm -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.048249 seconds and 4 git commands to generate.