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] 11x-maintenance-intent: ["(latest)"] 12build: [ 13 ["mv" "config/Makefile.unix" "config/Makefile"] {os != "win32"} 14 ["mv" "config/Makefile.mingw" "config/Makefile"] {os = "win32"} 15 [make "all"] 16] 17synopsis: "Stub code generator for OCaml" 18description: """ 19CamlIDL is a stub code generator for OCaml. It automates the 20generation of C stub code required for the Caml/C interface, based on 21an MIDL specification. Also provides some support for Microsoft's COM 22software components.""" 23depends: [ 24 "ocaml" {>= "4.05"} 25] 26conflicts: [ 27 "ocaml-option-bytecode-only" 28] 29url { 30 src: "https://github.com/xavierleroy/camlidl/archive/camlidl112.tar.gz" 31 checksum: [ 32 "sha256=d6ab22a363f22798d303df3b0e54ba274f2c3d7ab7a3023fee1c73d8a21970aa" 33 "md5=6a33ac617bfbca2334f9c0fb8f9d3bb8" 34 ] 35} 36extra-source "camlidl.install" { 37 src: 38 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/camlidl/camlidl.install.1.12" 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.12" 47 checksum: [ 48 "sha256=8c77825196d3f60f1d3d9c11bfd34519609a06a09178d672c60d66d9525f92c4" 49 "md5=ce109a486a026d3ad31cc68290da004b" 50 ] 51}