homebrew-core/Formula/yeti.rb
Brett Koonce 4d6b18ca7b yeti 0.9.9
Closes Homebrew/homebrew#25283.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-17 18:53:58 -08:00

17 lines
389 B
Ruby

require 'formula'
class Yeti < Formula
homepage 'http://mth.github.io/yeti/'
url 'https://github.com/mth/yeti/archive/v0.9.9.tar.gz'
sha1 'd4b3fee9e9e1c117f1a73b147695a24a217c2658'
head 'https://github.com/mth/yeti.git'
depends_on :ant
def install
system "ant jar"
libexec.install "yeti.jar"
bin.write_jar_script libexec/"yeti.jar", "yeti", "-server"
end
end