~ubuntu-branches/ubuntu/wily/coq-doc/wily

« back to all changes in this revision

Viewing changes to dev/ocamldebug-coq.template

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu, Stéphane Glondu, Samuel Mimram
  • Date: 2010-01-07 22:50:39 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107225039-n3cq82589u0qt0s2
Tags: 8.2pl1-1
[ Stéphane Glondu ]
* New upstream release (Closes: #563669)
  - remove patches
* Packaging overhaul:
  - use git, advertise it in Vcs-* fields of debian/control
  - use debhelper 7 and dh with override
  - use source format 3.0 (quilt)
* debian/control:
  - set Maintainer to d-o-m, set Uploaders to Sam and myself
  - add Homepage field
  - bump Standards-Version to 3.8.3
* Register PDF documentation into doc-base
* Add debian/watch
* Update debian/copyright

[ Samuel Mimram ]
* Change coq-doc's description to mention that it provides documentation in
  pdf format, not postscript, closes: #543545.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# wrap around ocamldebug for Coq
 
4
 
 
5
export COQTOP=COQTOPDIRECTORY
 
6
export COQLIB=COQLIBDIRECTORY
 
7
export COQTH=$COQLIB/theories
 
8
CAMLBIN=CAMLBINDIRECTORY
 
9
CAMLP4LIB=CAMLP4LIBDIRECTORY
 
10
OCAMLDEBUG=$CAMLBIN/ocamldebug
 
11
 
 
12
exec $OCAMLDEBUG \
 
13
        -I $CAMLP4LIB \
 
14
        -I $COQTOP \
 
15
        -I $COQTOP/config \
 
16
        -I $COQTOP/lib -I $COQTOP/kernel \
 
17
        -I $COQTOP/library -I $COQTOP/pretyping -I $COQTOP/parsing \
 
18
        -I $COQTOP/interp -I $COQTOP/proofs -I $COQTOP/tactics \
 
19
        -I $COQTOP/toplevel -I $COQTOP/dev -I $COQTOP/config \
 
20
        -I $COQTOP/contrib/extraction -I $COQTOP/contrib/field \
 
21
        -I $COQTOP/contrib/fourier    -I $COQTOP/contrib/firstorder \
 
22
        -I $COQTOP/contrib/interface \
 
23
        -I $COQTOP/contrib/omega      -I $COQTOP/contrib/romega \
 
24
        -I $COQTOP/contrib/ring       -I $COQTOP/contrib/xml \
 
25
        -I $COQTOP/contrib/subtac     -I $COQTOP/contrib/funind \
 
26
        -I $COQTOP/contrib/rtauto     -I $COQTOP/contrib/setoid_ring \
 
27
        -I $COQTOP/contrib/recdef     -I $COQTOP/contrib/dp \
 
28
        -I $COQTOP/ide \
 
29
        $*