this repo has no description
1opam-version: "2.0" 2maintainer: "Nicolas Berthier <m@nberth.space>" 3authors: ["Xavier Leroy"] 4homepage: "https://github.com/xavierleroy/camlidl" 5dev-repo: "git+https://github.com/xavierleroy/camlidl.git" 6bug-reports: "https://github.com/xavierleroy/camlidl/issues" 7license: [ 8 "QPL-1.0 WITH OCaml-LGPL-linking-exception" 9 "LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception" 10] 11build: [ 12 ["mv" "config/Makefile.unix" "config/Makefile"] {os != "win32"} 13 ["mv" "config/Makefile.mingw" "config/Makefile"] {os = "win32"} 14 [make "all"] 15] 16synopsis: "Stub code generator for OCaml" 17description: """ 18CamlIDL is a stub code generator for OCaml. It automates the 19generation of C stub code required for the Caml/C interface, based on 20an MIDL specification. Also provides some support for Microsoft's COM 21software components.""" 22depends: [ 23 "ocaml" {>= "4.05" & < "5.0"} 24] 25conflicts: [ 26 "ocaml-option-bytecode-only" 27] 28url { 29 src: "https://github.com/xavierleroy/camlidl/archive/camlidl111.tar.gz" 30 checksum: [ 31 "sha256=c49883cfff1f8844d1a0b1cfee14108ed0da7b59a0874cdee2f3d0d9e3aee178" 32 "md5=cfcf201d01f77abae6637b847e7cdde9" 33 ] 34} 35extra-source "camlidl.install" { 36 src: 37 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlidl/camlidl.install.1.11" 38 checksum: [ 39 "sha256=29d977190a114e7763f4ee2c7d86e128bb3d1cf6475c41ef649eb70507efbf17" 40 "md5=cf56e14faed046880b7c9d0f4cd737f1" 41 ] 42} 43extra-source "META" { 44 src: 45 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlidl/META.1.11" 46 checksum: [ 47 "sha256=9d2c564055cfda9c01e09201b1921141a0f0a09a474b25e6e9d1734d67eafebc" 48 "md5=2e2f78ac8c3e9f5581a28b2cec6d755b" 49 ] 50}