comparison src/ocaml-native.mk @ 2834:fe0a6e45513f

add package ocaml-native
author William <r.3@libertysurf.fr>
date Thu, 04 Oct 2012 14:47:35 +0200
parents
children efb8519157c2
comparison
equal deleted inserted replaced
2833:5e20e0961816 2834:fe0a6e45513f
1 # This file is part of mingw-cross-env.
2 # See doc/index.html for further information.
3
4 # zlib
5 PKG := ocaml-native
6 $(PKG)_IGNORE :=
7 $(PKG)_CHECKSUM := 9653e76dd14f0fbb750d7b438415890ab9fe2f4e
8 $(PKG)_SUBDIR := ocaml-$($(PKG)_VERSION)
9 $(PKG)_FILE := ocaml-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://caml.inria.fr/pub/distrib/ocaml-4.00/$($(PKG)_FILE)
11 $(PKG)_DEPS := gcc
12
13 define $(PKG)_UPDATE
14 wget -q -O- 'http://caml.inria.fr/pub/distrib/ocaml-3.12' | \
15 $(SED) -n 's,.*ocaml-\([0-9][^>]*\)\.tar.*,\1,ip' | \
16 tail -1
17 endef
18
19 define $(PKG)_BUILD
20 # patched ocaml source to get ocamlbuild use $(TARGET)-ocamlc, $(TARGET)-ocamlfind, ...
21 cd '$(1)' && ./configure \
22 -prefix '$(PREFIX)/$(TARGET)' \
23 -bindir '$(PREFIX)/$(TARGET)/bin/ocaml-native' \
24 -libdir '$(PREFIX)/$(TARGET)/lib/ocaml-native' \
25 -no-tk \
26 -no-shared-libs \
27 -verbose
28 $(MAKE) -C '$(1)' -j '$(JOBS)' world opt
29 $(SED) -i "s,@target@,$(TARGET),g" $(1)/ocamlbuild/options.ml
30 $(SED) -i "s,@target@,$(TARGET),g" $(1)/ocamlbuild/findlib.ml
31 $(MAKE) -C '$(1)' -j '$(JOBS)' ocamlbuild.native
32 cp -f '$(1)/_build/ocamlbuild/ocamlbuild.native' $(PREFIX)/bin/$(TARGET)-ocamlbuild
33 $(MAKE) -C '$(1)' install
34 # the following script requires ocamlbuild with option -ocamlfind to work
35 #(echo '#!/bin/sh'; \
36 # echo 'exec $(PREFIX)/bin/ocamlbuild -use-ocamlfind -ocamlfind $(TARGET)-ocamlfind "$$@"') \
37 # > '$(PREFIX)/bin/$(TARGET)-ocamlbuild'
38 #chmod 0755 '$(PREFIX)/bin/$(TARGET)-ocamlbuild'
39 # test will be done once cross ocamlopt is built
40 endef