homebrew-core/Formula/duck.rb

31 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.8.18026.tar.gz"
sha256 "ff75b2b0a4df30aef4f6cd2ba20fb3fa1198760fb7d8216abc62e032df4aa1e4"
head "https://svn.cyberduck.io/trunk/"
2015-01-11 23:40:12 +00:00
bottle do
cellar :any
2015-08-10 09:37:09 +00:00
sha256 "1cf4fd37421f57153d17789025ad2b95909e009e8507226d3e33457474f47121" => :yosemite
sha256 "0be31b18470ab4fe70bedbaa730ca1de5204355c2ddd3d114ad4763afdf611f0" => :mavericks
sha256 "b2a3135eee96ba4ab7d66b049f16467e61c6cb69a6bbfd98b32c46ef570be9f0" => :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
system "#{bin}/duck", "--download", Formula["when"].stable.url, testpath/"test"
(testpath/"test").verify_checksum Formula["when"].stable.checksum
end
end