this repo has no description
1opam-version: "2.0" 2synopsis: "The OCaml bindings distributed with LLVM" 3description: "Note: LLVM should be installed first." 4maintainer: "Alan Hu <alanh@ccs.neu.edu>" 5authors: [ 6 "Alan Hu <alanh@ccs.neu.edu>" 7 "Kate <kit-ty-kate@outlook.com>" 8 "Gordon Henriksen <gordonhenriksen@mac.com>" 9 "whitequark <whitequark@whitequark.org>" 10 "The LLVM team" 11] 12license: "Apache-2.0 WITH LLVM-exception" 13homepage: "http://llvm.moe" 14doc: "http://llvm.moe/ocaml" 15bug-reports: "http://llvm.org/bugs/" 16depends: [ 17 "ocaml" {>= "4.00.0"} 18 "dune" {>= "2.7"} 19 "ctypes" {>= "0.4"} 20 "conf-llvm" {build & = "16"} 21] 22build: [ 23 ["./setup.sh" conf-llvm:config] 24 ["dune" "build" "--release" "-j" jobs] 25 ["rm" "%{name}%.install"] 26] 27install: ["./install.sh" prefix] 28dev-repo: "git+https://github.com/alan-j-hu/llvm-dune.git" 29url { 30 src: 31 "https://github.com/alan-j-hu/llvm-dune/releases/download/v16.0.6%2Bnnp/llvm-dune-full-minified-16.0.6.tar.gz" 32 checksum: [ 33 "md5=d2bf13c08c943c69f1a29ec5b830c143" 34 "sha512=6abc12221eeea6bb26f457dee5f8a077d945583a48891bef7249e6129b8125a5151b92dec0cefc09b124fe988cea8c521123c95d74dd4cd9d87a282c17865fe2" 35 ] 36}