95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
25 lines
746 B
Ruby
25 lines
746 B
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.012.tar.gz"
|
|
sha256 "804861f2a7a36eef53a7310e52627e790fa9de66acf8565f697089389d2709a0"
|
|
head "https://github.com/t3rm1n4l/megacmd.git"
|
|
|
|
bottle do
|
|
sha1 "6ee3f124bf3c9eae280aefb07f2d25af8353a779" => :mavericks
|
|
sha1 "8292dfa4c648bbe95d1f9752c63ff3dd78104891" => :mountain_lion
|
|
sha1 "c49c5876032f94ec4e3d2ff71632f347d08191c0" => :lion
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
system "make"
|
|
bin.install File.basename(buildpath) => "megacmd"
|
|
end
|
|
|
|
test do
|
|
system "megacmd", "--version"
|
|
end
|
|
end
|