this repo has no description
1opam-version: "2.0"
2synopsis: "A library manager for OCaml"
3description: """
4Findlib is a library manager for OCaml. It provides a convention how
5to store libraries, and a file format ("META") to describe the
6properties of libraries. There is also a tool (ocamlfind) for
7interpreting the META files, so that it is very easy to use libraries
8in programs and scripts.
9"""
10license: "MIT"
11maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>"
12authors: "Gerd Stolpmann <gerd@gerd-stolpmann.de>"
13homepage: "http://projects.camlcity.org/projects/findlib.html"
14bug-reports: "https://github.com/ocaml/ocamlfind/issues"
15depends: [
16 "ocaml" {>= "4.00.0" & < "5.0"}
17]
18depopts: ["graphics"]
19build: [
20 [
21 "./configure"
22 "-bindir" bin
23 "-sitelib" lib
24 "-mandir" man
25 "-config" "%{lib}%/findlib.conf"
26 "-no-custom"
27 "-no-camlp4" {!ocaml:preinstalled & ocaml:version >= "4.02.0"}
28 "-no-topfind" {ocaml:preinstalled}
29 ]
30 [make "all"]
31 [make "opt"] {ocaml:native}
32]
33install: [
34 [make "install"]
35 ["install" "-m" "0755" "ocaml-stub" "%{bin}%/ocaml"] {ocaml:preinstalled}
36]
37dev-repo: "git+https://github.com/ocaml/ocamlfind.git"
38url {
39 src: "http://download.camlcity.org/download/findlib-1.9.1.tar.gz"
40 checksum: [
41 "md5=65e6dc9b305ccbed1267275fe180f538"
42 "sha512=83a05f3e310fa7cabb0475c5525f7a87c1b6bc2dc5e39f094cabfb5d944a826a5581844ba00ec1a48dd96184eb9de3c4d1055cdddee2b83c700a2de5a6dc6f84"
43 ]
44}