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-linux.tar.xz && mv -f wasmtime-*linux*/* %{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-linux.tar.xz" { 21 src: 22 "https://github.com/bytecodealliance/wasmtime/releases/download/v0.21.0/wasmtime-v0.21.0-x86_64-linux-c-api.tar.xz" 23 checksum: [ 24 "sha256=c0d4c9209ee25933665c2cfd9d5ff0956c02d4c52f57dfd61fb31fb7baa37f2a" 25 "md5=fa7df1c3eb44a319e3e133c1ab764c24" 26 ] 27} 28available: arch = "x86_64" & os = "linux"