30 lines
1.1 KiB
Ruby
30 lines
1.1 KiB
Ruby
class Megacmd < Formula
|
|
desc "Command-line client for mega.co.nz storage service"
|
|
homepage "https://github.com/t3rm1n4l/megacmd"
|
|
url "https://github.com/t3rm1n4l/megacmd/archive/0.016.tar.gz"
|
|
sha256 "def4cda692860c85529c8de9b0bdb8624a30f57d265f7e70994fc212e5da7e40"
|
|
head "https://github.com/t3rm1n4l/megacmd.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "80a5775ff5e5fe1e958cc6345a2d53f13e37bf366c7f4c8f3033f218851de813" => :catalina
|
|
sha256 "e7612192a4ac2e79363d8441f7d0f007c319a5aafd8e4f56e805335cbfa72d21" => :mojave
|
|
sha256 "02e75c7bbada7c3b3a230f3395448ec1dfb8598e7053ac6ad6a2b0b2f264d9ad" => :high_sierra
|
|
sha256 "8f60fb2783c1481f086e401e7cbfb2ada3a6e82a35e6d2e1a24643a7c7d8453f" => :sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
(buildpath/"src/github.com/t3rm1n4l/megacmd").install buildpath.children
|
|
cd "src/github.com/t3rm1n4l/megacmd" do
|
|
system "go", "build", "-o", bin/"megacmd"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
system bin/"megacmd", "--version"
|
|
end
|
|
end
|