Skip to content

Commit 39029d5

Browse files
committed
release ocamlfind-1.9.6
1 parent 3f793b1 commit 39029d5

File tree

1 file changed

+45
-0
lines changed
  • packages/ocamlfind/ocamlfind.1.9.6

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
synopsis: "A library manager for OCaml"
3+
description: """
4+
Findlib is a library manager for OCaml. It provides a convention how
5+
to store libraries, and a file format ("META") to describe the
6+
properties of libraries. There is also a tool (ocamlfind) for
7+
interpreting the META files, so that it is very easy to use libraries
8+
in programs and scripts.
9+
"""
10+
license: "MIT"
11+
maintainer: "Thomas Gazagnaire <[email protected]>"
12+
authors: "Gerd Stolpmann <[email protected]>"
13+
homepage: "http://projects.camlcity.org/projects/findlib.html"
14+
bug-reports: "https://github.com/ocaml/ocamlfind/issues"
15+
depends: [
16+
"ocaml" {>= "4.00.0"}
17+
]
18+
depopts: ["graphics"]
19+
build: [
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+
]
33+
install: [
34+
[make "install"]
35+
["install" "-m" "0755" "ocaml-stub" "%{bin}%/ocaml"] {ocaml:preinstalled}
36+
]
37+
dev-repo: "git+https://github.com/ocaml/ocamlfind.git"
38+
url {
39+
src: "http://download.camlcity.org/download/findlib-1.9.6.tar.gz"
40+
checksum: [
41+
"md5=96c6ee50a32cca9ca277321262dbec57"
42+
"sha512=cfaf1872d6ccda548f07d32cc6b90c3aafe136d2aa6539e03143702171ee0199add55269bba894c77115535dc46a5835901a5d7c75768999e72db503bfd83027"
43+
]
44+
}
45+

0 commit comments

Comments
 (0)