this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26617 from vouillon/opam-publish-binaryen-bin.119

Package binaryen-bin.119

authored by

Anil Madhavapeddy and committed by
GitHub
98a81095 1b0d2861

+32
+32
packages/binaryen-bin/binaryen-bin.119/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Compiler and toolchain infrastructure library for WebAssembly" 3 + description: """ 4 + Binaryen is a compiler and toolchain infrastructure library for WebAssembly. 5 + It aims to make compiling to WebAssembly easy, fast, and effective. 6 + """ 7 + maintainer: "Jérôme Vouillon <jerome@tarides.com>" 8 + license: "Apache-2.0" 9 + authors: ["Alon Zakai" "Thomas Lively"] 10 + homepage: "https://github.com/WebAssembly/binaryen/" 11 + bug-reports: "https://github.com/ocaml-wasm/wasm_of_ocaml/issues" 12 + dev-repo: "git+https://github.com/WebAssembly/binaryen.git" 13 + depends: ["conf-cmake" "conf-ninja" {os-family != "windows"} "conf-c++" ] 14 + build: [ 15 + ["cmake" "-G" "Ninja" "." "-DBUILD_STATIC_LIB=ON" "-DBUILD_TESTS=off" "-DINSTALL_LIBS=off" "-DENABLE_WERROR=off"] {os-family != "windows" & arch != "x86_32" } 16 + ["ninja"] {os-family != "windows" & arch != "x86_32"} 17 + ["cmake" "." "-DBUILD_STATIC_LIB=ON" "-DBUILD_TESTS=off" "-DINSTALL_LIBS=off" "-DCMAKE_C_COMPILER=x86_64-w64-mingw32-gcc"] {os-family = "windows"} 18 + ["cmake" "." "-DBUILD_STATIC_LIB=ON" "-DBUILD_TESTS=off" "-DINSTALL_LIBS=off"] {os-family != "windows" & arch = "x86_32"} 19 + [make "-j" jobs] {os-family = "windows" | arch = "x86_32"} 20 + ] 21 + install: [ 22 + ["cp" "bin/wasm-opt" "bin/wasm-metadce" "bin/wasm-merge" "%{bin}%"] { os-family != "windows" } 23 + ["cp" "bin/wasm-opt.exe" "bin/wasm-metadce.exe" "bin/wasm-merge.exe" "%{bin}%"] { os-family = "windows" } 24 + ] 25 + url { 26 + src: 27 + "https://github.com/WebAssembly/binaryen/archive/refs/tags/version_119.tar.gz" 28 + checksum: [ 29 + "md5=4dfd979d4f46aaa9ea983bd77c33c414" 30 + "sha512=c49053cbdfdabd33dda1e04d2b50761b92b24245d6b8d9c9fec242f35624d57e6d346f54b764fdccfa07fb1b5617df3b6c535fc2cde56f619899394b2a4e3f1c" 31 + ] 32 + }