Get support for sagikazarmark/binbrew

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

sagikazarmark/binbrew

Binbrew

Go Version CircleCI Go Report Card GolangCI GoDoc

Binbrew installs pre-built binary dependencies (from Github). It's primary use case is to help setting up development environments and allow to use the same tools in CI environments as well.

Installation

Add the following to your installation scripts:

export BINBREW_VERSION=0.1.0
curl -sfL https://git.io/binbrew | bash -s -- -b ./bin/ v${BINBREW_VERSION}

To install the latest version simply omit the version:

curl -sfL https://git.io/binbrew | bash -s -- -b ./bin/

Note: Binbrew is still under heavy development, so it's recommended to lock onto a specific version.

Use it in your Makefile:

BINBREW_VERSION = 0.1.0
bin/binbrew: bin/binbrew-${BINBREW_VERSION}
	@ln -sf binbrew-${BINBREW_VERSION} bin/binbrew
bin/binbrew-${BINBREW_VERSION}:
	@mkdir -p bin
	curl -sfL https://git.io/binbrew | bash -s -- -b ./bin/ v${BINBREW_VERSION}
	@mv bin/binbrew $@

Quick start

In order to install binaries run the following command:

binbrew install dep@0.5.0

You can install multiple binaries with a single command:

binbrew install dep@0.5.0 protoc@3.6.1

Usage

Binary installer

Usage:
  binbrew [command]

Available Commands:
  help        Help about any command
  install     Install one or more binaries

Flags:
  -h, --help      help for binbrew
      --version   version for binbrew

Use "binbrew [command] --help" for more information about a command.

License

The MIT License (MIT). Please see License File for more information.

Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2