On this page
system_update_alt
Install
Guide to setting up and installing contrib
Contrib is available for installation on MacOS, Linux, and Windows as a stand alone binary or built from source. The recommended installation method for macOS and linux is via Homebrew.
MacOS / Linux with Homebrew
Install the latest version of Contrib with Homebrew from the tap.
brew install twinsnes/tap/contrib
Installing with homebrew will work around the Signing and Notarizing requirement on macOS by removing the quarantine bit form the binary post install
MacOS / Linux / Windows with Binary Download
Download the latest release from the releases page and add it to your path.
From source
To build the binary from source, clone the repository, run go mod tidy to download the dependencies, and run the make build command.
git clone git@github.com:TWinsnes/contrib.git
cd contrib
go mod tidy
make build
This will output the binary to dist/contrib, which can be copied to your path or called directly from the command line.