2009-12-18 16:32:33 +00:00
|
|
|
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/'
|
2013-12-17 16:44:25 +00:00
|
|
|
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'
|
2009-12-18 16:32:33 +00:00
|
|
|
|
2013-10-28 19:44:20 +00:00
|
|
|
depends_on :ant
|
|
|
|
|
2009-12-18 16:32:33 +00:00
|
|
|
def install
|
2012-02-10 02:51:51 +00:00
|
|
|
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
|