blob: b88f099fab025c382f8d6df127ef498ca41e068e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
Name: coqide
Version: 8.0
Release: 1
Summary: The Coq Integrated Development Interface
Copyright: freely redistributable
Group: Applications/Math
Vendor: INRIA & LRI
URL: http://coq.inria.fr
Source: ftp://ftp.inria.fr/INRIA/coq/V8.0/coq-8.0.tar.gz
Icon: petit-coq.gif
Requires: coq = 8.0
BuildRoot: /var/tmp/coqide
%description
The Coq Integrated Development Interface is a graphical interface for the
Coq proof assistant
%define debug_package %{nil}
%prep
%setup -n coq-8.0
%build
./configure -bindir %{_bindir} -libdir %{_libdir}/coq -mandir %{_mandir} \
-emacslib %{_datadir}/emacs/site-lisp \
-coqdocdir %{_datadir}/texmf/tex/latex/misc -opt -reals all
make coqide
%clean
rm -rf %{buildroot}
make clean
%install
rm -rf %{buildroot}
make -e COQINSTALLPREFIX=%{buildroot} install-coqide
%define __spec_install_post /usr/lib/rpm/brp-compress
%files
%{_bindir}/*
%{_libdir}/coq/ide
%defattr(-,root,root)
|