Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aminya/chocolatey-wabt
The WebAssembly Binary Toolkit
https://github.com/aminya/chocolatey-wabt
chocolatey chocolatey-packages wabt wasm-decompile wasm2c webassembly
Last synced: 5 days ago
JSON representation
The WebAssembly Binary Toolkit
- Host: GitHub
- URL: https://github.com/aminya/chocolatey-wabt
- Owner: aminya
- License: mit
- Created: 2021-07-26T05:00:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-20T18:17:18.000Z (over 3 years ago)
- Last Synced: 2024-11-09T06:40:46.470Z (about 1 month ago)
- Topics: chocolatey, chocolatey-packages, wabt, wasm-decompile, wasm2c, webassembly
- Language: PowerShell
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chocolatey-wabt
Chocolatey package for wabt## Install
Install chocolatey from [here](https://chocolatey.org/install) then:
```ps1
choco install wabt
```**Note**: The tools are installed in "C:/tools/wabt-$version".
# Uninstall
```ps1
choco uninstall wabt
```**Note**: The tools are removed from "C:/tools/wabt-$version".
# Install without chocolatey
You should have git installed. These scripts all run in PowerShell.1) Clone this repository:
```ps1
git clone https://github.com/aminya/chocolatey-wabt.git
cd chocolatey-wabt\tools
```2) run `chocolateyInstall`
```ps1
.\chocolateyInstall.ps1
```This installs the pre-specified version. If you want to install a certain version first set `$env:chocolateyPackageVersion` environment variable and then run install:
```ps1
$env:chocolateyPackageVersion="1.0.23"
.\chocolateyInstall.ps1
```# Uninstall without chocolatey
```ps1
$env:chocolateyPackageVersion="1.0.23"
.\chocolateyUninstall.ps1
```