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