homebrew-core/Formula/opam.rb

35 lines
825 B
Ruby
Raw Normal View History

require 'formula'
class Opam < Formula
homepage 'https://github.com/OCamlPro/opam'
url 'https://github.com/OCamlPro/opam/archive/0.9.1.tar.gz'
sha1 '49622e3677ed4514b1c4a4eb59beccc2f0c4960c'
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, or
via 'man opam' and 'opam --help'.
EOS
end
end