blob: 46fa65bc22de248f6161791de364c3cc0dc2e811 (
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
|
require 'formula'
class Opam < Formula
homepage 'https://github.com/OCamlPro/opam'
url 'https://github.com/OCamlPro/opam/tarball/0.7.6'
sha1 '4c8ade111f0f5b77c45e9f043e70c06e3d0b4297'
depends_on "objective-caml"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
def test
system "#{bin}/opam --help"
end
def caveats; <<-EOS.undent
OPAM uses ~/.opam by default to install packages, so you need to initialize
the package database first by running (as a normal user):
$ opam init
and add the following line to ~/.profile to initialize the environment:
$ eval `opam config -env`
Documentation and tutorials are available at http://opam.ocamlpro.com
EOS
end
end
|