ocaml@4.06.0: new version (#7078)
This commit is contained in:
parent
e8b4de7b4c
commit
ebaa106d7a
@ -32,12 +32,17 @@ class Ocaml(Package):
|
|||||||
homepage = "http://ocaml.org/"
|
homepage = "http://ocaml.org/"
|
||||||
url = "http://caml.inria.fr/pub/distrib/ocaml-4.03/ocaml-4.03.0.tar.gz"
|
url = "http://caml.inria.fr/pub/distrib/ocaml-4.03/ocaml-4.03.0.tar.gz"
|
||||||
|
|
||||||
|
version('4.06.0', '66e5439eb63dbb8b8224cba5d1b20947')
|
||||||
version('4.03.0', '43812739ea1b4641cf480f57f977c149')
|
version('4.03.0', '43812739ea1b4641cf480f57f977c149')
|
||||||
|
|
||||||
depends_on('ncurses')
|
depends_on('ncurses')
|
||||||
|
|
||||||
|
def url_for_version(self, version):
|
||||||
|
url = "http://caml.inria.fr/pub/distrib/ocaml-{0}/ocaml-{1}.tar.gz"
|
||||||
|
return url.format(version.up_to(2), version)
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
configure('-prefix', '{0}'.format(prefix))
|
configure('-prefix', '{0}'.format(prefix))
|
||||||
|
|
||||||
make('world.opt')
|
make('world.opt')
|
||||||
make('install')
|
make('install', 'PREFIX={0}'.format(prefix))
|
||||||
|
Loading…
Reference in New Issue
Block a user