You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop.rb

21 lines
631 B
Ruby

7 years ago
class Cointop < Formula
7 years ago
desc "Interactive terminal based UI application for tracking cryptocurrencies"
7 years ago
homepage "https://cointop.sh"
7 years ago
url "https://github.com/miguelmota/cointop/archive/1.0.0.tar.gz"
sha256 "8ff6988cd18b35dbf85436add19135a587e03702b43744f563f137bb067f6e04"
7 years ago
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
7 years ago
(buildpath/"src/github.com/miguelmota/cointop").install buildpath.children
cd "src/github.com/miguelmota/cointop" do
7 years ago
system "go", "build", "-o", "#{bin}/cointop"
7 years ago
prefix.install_metafiles
7 years ago
end
end
test do
7 years ago
system "#{bin}/cointop" "-test"
7 years ago
end
end