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.03" & < "5.0"} 24] 25conflicts: [ 26 "ocaml-option-bytecode-only" 27] 28available: [ os != "win32" & os != "cygwin" ] 29url { 30 src: "https://github.com/xavierleroy/camlidl/archive/camlidl109.tar.gz" 31 checksum: [ 32 "sha256=c6dfe04c08155572b9106cf41540e02c4b4e3f125b903afdd65d154f5f2ceee2" 33 "md5=50a7348c14ce7448a35efa96b98018af" 34 ] 35} 36extra-source "camlidl.install" { 37 src: 38 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlidl/camlidl.install.1.09" 39 checksum: [ 40 "sha256=29d977190a114e7763f4ee2c7d86e128bb3d1cf6475c41ef649eb70507efbf17" 41 "md5=cf56e14faed046880b7c9d0f4cd737f1" 42 ] 43} 44extra-source "META" { 45 src: 46 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlidl/META.1.09" 47 checksum: [ 48 "sha256=c9f52830303f43c9ca0b6ac840f36b6e8a851edd5efffca9e9a418beb64a2d50" 49 "md5=23b140345606a15a304212e930cadaa7" 50 ] 51}