this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25775 from dbuenzli/b0-publish-down.0.3.0

Add: down.0.3.0

authored by

Anil Madhavapeddy and committed by
GitHub
2b68a774 783ee6db

+48
+48
packages/down/down.0.3.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "An OCaml toplevel (REPL) upgrade" 3 + description: """\ 4 + Down is an unintrusive user experience upgrade for the `ocaml` 5 + toplevel (REPL). 6 + 7 + Simply load the zero dependency `Down` library in the `ocaml` toplevel 8 + and you get line edition, history, session support and identifier 9 + completion and documentation (courtesy of [`ocp-index`][ocp-index]). 10 + 11 + Add this to your `~/.ocamlinit`: 12 + 13 + #use "down.top" 14 + 15 + ![tty](doc/tty.png) 16 + 17 + Down is distributed under the ISC license. 18 + 19 + Homepage: http://erratique.ch/software/down 20 + 21 + [ocp-index]: https://github.com/OCamlPro/ocp-index""" 22 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 23 + authors: "The down programmers" 24 + license: "ISC" 25 + tags: ["dev" "toplevel" "repl" "org:erratique"] 26 + homepage: "https://erratique.ch/software/down" 27 + doc: "https://erratique.ch/software/down/doc/" 28 + bug-reports: "https://github.com/dbuenzli/down/issues" 29 + depends: [ 30 + "ocaml" {>= "4.14.0"} 31 + "ocamlfind" {build} 32 + "ocamlbuild" {build} 33 + "topkg" {build & >= "1.0.3"} 34 + "uucp" {dev} 35 + ] 36 + build: [ 37 + "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%" "--lib-dir" "%{lib}%" 38 + ] 39 + install: [ 40 + ["install" "-d" "%{lib}%/ocaml/"] 41 + ["install" "src/down.top" "src/down.nattop" "%{lib}%/ocaml/"] 42 + ] 43 + dev-repo: "git+https://erratique.ch/repos/down.git" 44 + url { 45 + src: "https://erratique.ch/software/down/releases/down-0.3.0.tbz" 46 + checksum: 47 + "sha512=03d4a5e82da97ac7814f93385d1a216976976ed7b00693c1e4fa24f6ea2e15121b39344bc599b82e1d2fea12d87663810c2aaca920af1d8b4db5682c6ec61dc6" 48 + }