homebrew-core/Formula/yeti.rb

18 lines
389 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Yeti < Formula
2013-04-07 02:34:41 +00:00
homepage 'http://mth.github.io/yeti/'
url 'https://github.com/mth/yeti/archive/v0.9.9.tar.gz'
sha1 'd4b3fee9e9e1c117f1a73b147695a24a217c2658'
2010-06-30 05:02:50 +00:00
2011-05-27 05:02:55 +00:00
head 'https://github.com/mth/yeti.git'
depends_on :ant
def install
system "ant jar"
2013-08-13 00:20:55 +00:00
libexec.install "yeti.jar"
bin.write_jar_script libexec/"yeti.jar", "yeti", "-server"
2010-06-30 05:02:50 +00:00
end
end