homebrew-core/Formula/yeti.rb

18 lines
389 B
Ruby

require 'formula'
class Yeti < Formula
homepage 'http://mth.github.io/yeti/'
url 'https://github.com/mth/yeti/archive/v0.9.8.tar.gz'
sha1 '64e6174f765fd1444eff70c4a96ae76b2daa6c79'
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