homebrew-core/Formula/wu.rb
2019-10-13 15:37:56 +02:00

32 lines
1.3 KiB
Ruby

class Wu < Formula
desc "CLI that retrieves weather data from Weather Underground"
homepage "https://github.com/sramsay/wu"
url "https://github.com/sramsay/wu/archive/3.10.0.tar.gz"
sha256 "0934771cdd04cb4c38b45190dbfa97fa8b3aafaf53ea75152f070c97de850223"
bottle do
cellar :any_skip_relocation
sha256 "66306c7a7dc7f6e404d8a5b5bb9cc9a357c6835c67c876fe1974cb5401b8bbb8" => :catalina
sha256 "e1363be0c7a7e85ba3dbea34dad7d495df8939783fd4b8afd4f076981781e7de" => :mojave
sha256 "994a58ca1396928ba5a30189ca784417c510d1563ce64d3866e99f5fdc46c7cf" => :high_sierra
sha256 "5efc0cdf39ff0d7ce0cb70be665118459cea9f8523f9a01bf67a341e1330fb56" => :sierra
sha256 "bd297452f33d081c7720190bc9ef17f1c8b247de5a27c64e78fede64bd871050" => :el_capitan
sha256 "61b96421517b20e4d6090e37ffe3b52a93ee0934ecc06e8282fd06d0bb457883" => :yosemite
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
mkdir_p buildpath/"src/github.com/sramsay"
ln_sf buildpath, buildpath/"src/github.com/sramsay/wu"
cd "src/github.com/sramsay/wu" do
system "go", "build", "-o", bin/"wu", "-ldflags", "-X main.Version=#{version}"
end
end
test do
assert_match "You must create a .condrc file in $HOME.", shell_output("#{bin}/wu -all")
end
end