this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/LaurentMazare/ocaml-wasmtime" 3maintainer: "lmazare@gmail.com" 4bug-reports: "https://github.com/LaurentMazare/ocaml-wasmtime/issues" 5dev-repo: "git+https://github.com/LaurentMazare/ocaml-wasmtime.git" 6authors: [ 7 "Laurent Mazare" 8] 9install: [ 10 [ 11 "sh" 12 "-c" 13 "test -d %{lib}%/libwasmtime/lib/libwasmtime.a || ( mkdir -p %{lib}%/libwasmtime && tar xf wasmtime-macos.tar.xz && mv -f wasmtime-*macos*/* %{lib}%/libwasmtime )" 14 ] 15] 16synopsis: "The libwasmtime library package" 17description: """ 18This is used by the wasmtime package to trigger the install of the 19libwasmtime library.""" 20extra-source "wasmtime-macos.tar.xz" { 21 src: 22 "https://github.com/bytecodealliance/wasmtime/releases/download/v0.22.0/wasmtime-v0.22.0-x86_64-macos-c-api.tar.xz" 23 checksum: [ 24 "sha256=a18d5c0cbc8713f9262316ff976eae889273c2e28db0390ad7f491ea9669e117" 25 "md5=037c2684b81b3c69c9541a85b0050d7d" 26 ] 27} 28available: arch = "x86_64" & os = "macos"