homebrew-core/Formula/duck.rb

32 lines
1.1 KiB
Ruby
Raw Normal View History

class Duck < Formula
desc "Command-line interface for Cyberduck (a multi-protocol file transfer tool)"
homepage "https://duck.sh/"
url "https://dist.duck.sh/duck-src-4.7.1.17911.tar.gz"
sha1 "4495f940bcb105a3a8550ffbec6c4c6577a0c683"
head "https://svn.cyberduck.io/trunk/"
2015-01-11 23:40:12 +00:00
bottle do
cellar :any
2015-07-03 13:55:02 +00:00
sha256 "bfe86da78894f372c068519d0ad4c460bc30f575fa7d340fc598ca8347b959c2" => :yosemite
sha256 "815df4596b0403106df8a896c250af44b76ecaf1670a239b97a7c5926ce95d71" => :mavericks
sha256 "e0183f13dcf4caa7522b25896708ad2ba1de370749eae07a0216c44b408f6223" => :mountain_lion
2015-01-11 23:40:12 +00:00
end
depends_on :java => ["1.7+", :build]
depends_on :xcode => :build
depends_on "ant" => :build
def install
2015-01-12 13:42:23 +00:00
revision = version.to_s.rpartition(".").last
system "ant", "-Dbuild.compile.target=1.7", "-Drevision=#{revision}", "cli"
libexec.install Dir["build/duck.bundle/*"]
bin.install_symlink "#{libexec}/Contents/MacOS/duck" => "duck"
end
test do
filename = (testpath/"test")
system "#{bin}/duck", "--download", stable.url, filename
filename.verify_checksum stable.checksum
end
end