From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sympa.inria.fr (Postfix) with ESMTPS id D18467F71A for ; Fri, 11 Apr 2014 18:00:45 +0200 (CEST) Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=pra; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=mailfrom; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@smtp.webfaction.com) identity=helo; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="postmaster@smtp.webfaction.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmkCAOEQSFNKN1ZKlGdsb2JhbABZg0GCRIEhwUOBMg4BAQEBBwsLCRIqgiYBAQQjVhALGgImAgJHEAYbh3QECalcoloTBIEpi0aBSjMHgm81gRQBA58cF48i X-IPAS-Result: AmkCAOEQSFNKN1ZKlGdsb2JhbABZg0GCRIEhwUOBMg4BAQEBBwsLCRIqgiYBAQQjVhALGgImAgJHEAYbh3QECalcoloTBIEpi0aBSjMHgm81gRQBA58cF48i X-IronPort-AV: E=Sophos;i="4.97,842,1389740400"; d="scan'208";a="67751159" Received: from mail6.webfaction.com (HELO smtp.webfaction.com) ([74.55.86.74]) by mail2-smtp-roc.national.inria.fr with ESMTP; 11 Apr 2014 18:00:44 +0200 Received: from [172.20.10.2] (35-229.197-178.cust.bluewin.ch [178.197.229.35]) by smtp.webfaction.com (Postfix) with ESMTP id 885EE227CCC7; Fri, 11 Apr 2014 15:58:34 +0000 (UTC) Date: Fri, 11 Apr 2014 17:58:30 +0200 From: =?utf-8?Q?Daniel_B=C3=BCnzli?= To: =?utf-8?Q?Markus_Wei=C3=9Fmann?= Cc: caml-list@inria.fr Message-ID: In-Reply-To: <53c5ec5fa458ca0ae78f13ff79d9abf5@in.tum.de> References: <77DB6A35979C449C90DEAC36896DA971@erratique.ch> <53c5ec5fa458ca0ae78f13ff79d9abf5@in.tum.de> X-Mailer: sparrow 1.6.4 (build 1178) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Re: [Caml-list] [ANN] React 1.0.0 Le vendredi, 11 avril 2014 =C3=A0 17:12, Markus Wei=C3=9Fmann a =C3=A9crit : > while at it, could you please provide a non-opam style installation > routine? (Oasis, Makefile, ..) Sorry but the answer is no. 1) I don't have the time for that 2) oasis is a= broken idea that gets in the way 3) I don't want to maintain more than one= build system 4) I don't want to have to implement an install procedure in = each of my packages.=20=20 For react the build system is very simple, from the root directory of the d= istribution you have to invoke a single shell script as follow: ./pkg/build $HAS_NATIVE=20=20 Where HAS_NATIVE should be "true" if you have ocamlopt and "false" if you d= on't. This will build the artefacts using ocamlbuild and generate a react.i= nstall file at the toplevel directory of the distribution. You can then eit= her process this file yourself or more recommended directly use the opam-in= staller tool distributed with opam to process this file and install the fil= es at a given $PREFIX. Note that this procedure is the same for the dozen of packages I distribute= except there may be more booleans to pass to the `build` script to specify= optional dependencies. See e.g. Vg's pkg/build usage: https://github.com/d= buenzli/vg/blob/master/pkg/build#L3 Feel free to ask me any question if you run into problems. Best, Daniel