~ubuntu-branches/ubuntu/precise/laby/precise

« back to all changes in this revision

Viewing changes to data/mods/ocaml/lib/defs

  • Committer: Package Import Robot
  • Author(s): Mehdi Dogguy
  • Date: 2011-09-26 14:09:54 UTC
  • mfrom: (7.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20110926140954-om8rcdmy6hsnm6dy
Tags: 0.6.3-1
* New upstream release
* Switch to 3.0 (quilt) source format.
* Bump Standards-Version to 3.9.2, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
mod_info()
4
 
{
5
 
    need_command ocamlc
6
 
}
7
 
 
8
 
mod_prep()
9
 
{
10
 
    fetch_t robot.ml
11
 
    spawn program.ml
12
 
}
13
 
 
14
 
mod_run()
15
 
{
16
 
    ocamlc robot.ml program.ml -o program || error
17
 
    exec ./program
18
 
}