Skip to content

Commit

Permalink
Brew formula update for starport version v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Dec 21, 2020
1 parent 70043af commit 9ec6a9b
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions starport.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,20 @@
class Starport < Formula
desc "CLI tool for developing Cosmos SDK apps."
homepage "https://github.com/tendermint/starport"
version "0.12.0"
version "0.13.0"
bottle :unneeded

if OS.mac?
url "https://github.com/tendermint/starport/releases/download/v0.12.0/starport_0.12.0_darwin_amd64.tar.gz"
sha256 "5fca4260b82b826724fb172d604dceeb305a0987eeac1738c8c441c9f2b317fa"
elsif OS.linux?
if Hardware::CPU.intel?
url "https://github.com/tendermint/starport/releases/download/v0.12.0/starport_0.12.0_linux_amd64.tar.gz"
sha256 "3504bdf0229b365efe50df745d30d1a9b73b66a76eec58870db5b9943dd03578"
end
if Hardware::CPU.arm?
if Hardware::CPU.is_64_bit?
url "https://github.com/tendermint/starport/releases/download/v0.12.0/starport_0.12.0_linux_arm64.tar.gz"
sha256 "13797e59dd4c46102f7fee24247f69ba53ec63978c9685b4c57adde94ad2146f"
else
end
end
url "https://github.com/tendermint/starport/releases/download/v0.13.0/starport_0.13.0_darwin_amd64.tar.gz"
sha256 "0a8b948c5a46012eb095dd1099ea0b06c2f7b24336fb36ff0f3d05c7d0584a35"
end
if OS.linux? && Hardware::CPU.intel?
url "https://github.com/tendermint/starport/releases/download/v0.13.0/starport_0.13.0_linux_amd64.tar.gz"
sha256 "a85516ff78fb5e8fe9209f2d212043f5e91a32c1e292f00384d6f093b350e3a8"
end
if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/tendermint/starport/releases/download/v0.13.0/starport_0.13.0_linux_arm64.tar.gz"
sha256 "f1b81956bcfefe5dda0102e6d6099efeaee0e76874c4f58c9d3637c2d85e6e6f"
end

def install
Expand Down

0 comments on commit 9ec6a9b

Please sign in to comment.