Skip to content

Commit

Permalink
trunk 0.6.0 (new formula)
Browse files Browse the repository at this point in the history
Closes #61847.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
  • Loading branch information
thedodd authored and SMillerDev committed Oct 5, 2020
1 parent 0ddc610 commit 851bbff
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Formula/trunk.rb
@@ -0,0 +1,18 @@
class Trunk < Formula
desc "Build, bundle & ship your Rust WASM application to the web"
homepage "https://github.com/thedodd/trunk"
url "https://github.com/thedodd/trunk/archive/v0.6.0.tar.gz"
sha256 "5492729a6dd027c46d91bacca9b3b87beb3b534c7c6f0f2529f9675600a9e273"
license any_of: ["MIT", "Apache-2.0"]
head "https://github.com/thedodd/trunk.git"

depends_on "rust" => :build

def install
system "cargo", "install", *std_cargo_args
end

test do
assert_match "ConfigOpts {\n", shell_output("#{bin}/trunk config show")
end
end

0 comments on commit 851bbff

Please sign in to comment.