this repo has no description
0
fork

Configure Feed

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

Merge pull request #25820 from kit-ty-kate/opam-publish-camlp4.5.1

Package camlp4.5.1

authored by

Anil Madhavapeddy and committed by
GitHub
4eb8860c c30ea529

+44
+44
packages/camlp4/camlp4.5.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: 3 + "Camlp4 is a system for writing extensible parsers for programming languages" 4 + description: """\ 5 + It provides a set of OCaml libraries that are used to define grammars as well 6 + as loadable syntax extensions of such grammars. Camlp4 stands for Caml 7 + Preprocessor and Pretty-Printer and one of its most important applications is 8 + the definition of domain-specific extensions of the syntax of OCaml. 9 + 10 + Camlp4 was part of the official OCaml distribution until its version 4.01.0. 11 + Since then it has been replaced by a simpler system which is easier to maintain 12 + and to learn: ppx rewriters and extension points.""" 13 + maintainer: "ygrek@autistici.org" 14 + authors: ["Daniel de Rauglaudre" "Nicolas Pouillard"] 15 + license: "LGPL-2.1-only" 16 + homepage: "https://github.com/camlp4/camlp4" 17 + bug-reports: "https://github.com/camlp4/camlp4/issues" 18 + depends: [ 19 + "ocaml" {>= "5.1" & < "5.2"} 20 + "ocamlbuild" {build} 21 + "ocamlfind" {build} 22 + "camlp-streams" 23 + ] 24 + build: [ 25 + [ 26 + "./configure" 27 + "--bindir=%{bin}%" 28 + "--libdir=%{lib}%/ocaml" 29 + "--pkgdir=%{lib}%" 30 + "--pinned" 31 + ] 32 + [make "clean"] 33 + [make "all"] {ocaml:native-dynlink} 34 + [make "byte"] {!ocaml:native-dynlink} 35 + ] 36 + install: [make "install" "install-META"] 37 + dev-repo: "git+https://github.com/camlp4/camlp4.git" 38 + url { 39 + src: "https://github.com/camlp4/camlp4/archive/refs/tags/5.1+1.tar.gz" 40 + checksum: [ 41 + "md5=1a22cdbb9377ed9d64b1a3e091051348" 42 + "sha512=2aa69b23397d2bf2dde6d1e8cfa4008da35960822db36bb04a922c4640cadadd7d5a9f12cc0e855447327131459c0e63bdd6269e8abd598a3da10966eab1d74a" 43 + ] 44 + }