this repo has no description
1opam-version: "2.0" 2synopsis: "Bootstrapped development binary for opam 2.1" 3license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 4description: """ 5This package compiles (bootstraps) opam. For consistency and safety of the installation, the binaries are not installed into the PATH, but into lib/opam-devel, from where the user can manually install them system-wide. 6""" 7maintainer: "opam-devel@lists.ocaml.org" 8authors: [ 9 "Vincent Bernardoff <vb@luminar.eu.org>" 10 "Raja Boujbel <raja.boujbel@ocamlpro.com>" 11 "Roberto Di Cosmo <roberto@dicosmo.org>" 12 "Thomas Gazagnaire <thomas@gazagnaire.org>" 13 "Louis Gesbert <louis.gesbert@ocamlpro.com>" 14 "Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>" 15 "Anil Madhavapeddy <anil@recoil.org>" 16 "Guillem Rieu <guillem.rieu@ocamlpro.com>" 17 "Ralf Treinen <ralf.treinen@pps.jussieu.fr>" 18 "Frederic Tuong <tuong@users.gforge.inria.fr>" 19] 20homepage: "https://opam.ocaml.org" 21bug-reports: "https://github.com/ocaml/opam/issues" 22dev-repo: "git+https://github.com/ocaml/opam.git" 23build: [ 24 ["./configure" "--disable-checks" "--prefix" prefix] 25 [make "%{name}%.install"] 26] 27depends: [ 28 "ocaml" {>= "4.02.3"} 29 "opam-client" {= version} 30 "cmdliner" {>= "0.9.8"} 31 "dune" {>= "1.5.0"} 32] 33post-messages: [ 34"The development version of opam has been successfully compiled into %{lib}%/%{name}%. You should not run it from there, please install the binaries to your PATH, e.g. with 35 sudo cp %{lib}%/%{name}%/opam /usr/local/bin 36 37If you just want to give it a try without altering your current installation, you could use instead: 38 alias opam2=\"OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\"" 39 {success} 40] 41url { 42 src: "https://github.com/ocaml/opam/archive/2.1.0-beta2.tar.gz" 43 checksum: [ 44 "md5=01a30e3469c3e8ebc04f56a3330778fa" 45 "sha512=c5f00ed4d78b1863717b44e014af1f1e8c4bc9e16ca60f1ac1216d12163d9a3b19721026d0e455429067b8ce90ec646f1be39e3daf0f3710c556da65ec6cd2c0" 46 ] 47} 48x-maintained: false