aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yeti.rb
blob: eb4e89372c6615ab65a07ee53eb8e38804fc44d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 => :build

  def install
    system "ant jar"
    libexec.install "yeti.jar"
    bin.write_jar_script libexec/"yeti.jar", "yeti", "-server"
  end
end