this repo has no description
1opam-version: "2.0"
2synopsis: "Installation of files to a prefix, following opam conventions"
3description: """\
4opam-installer is a small tool that can read *.install files, as defined by opam [1], and execute them to install or remove package files without going through opam.
5
6[1] http://opam.ocaml.org/doc/2.0/Manual.html#lt-pkgname-gt-install"""
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"
22license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
23depends: [
24 "ocaml" {>= "4.02.3"}
25 "opam-format" {= version}
26 "cmdliner" {>= "1.0.0" & < "2.0.0"}
27 "dune" {>= "1.2.1"}
28]
29build: [
30 ["./configure" "--disable-checks" "--prefix" prefix]
31 ["dune" "build" "-p" name "-j" jobs]
32]
33dev-repo: "git+https://github.com/ocaml/opam.git"
34url {
35 src: "https://github.com/ocaml/opam/archive/2.0.8.tar.gz"
36 checksum: [
37 "md5=0b798434a6275212ec58922068cde186"
38 "sha512=14737dc994be2c54dfeaf2658d3713178033e1bc2b4b845a58b4bfc118bbbf12b502924add0ae32b4b2b6c1944462e5ee7143df3de362d9ee39573249d013bc9"
39 ]
40}