blob: 158f48ea091027c33bb5ea8c4e5916cbde195462 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Yeti < Formula
homepage 'http://mth.github.io/yeti/'
url 'https://github.com/mth/yeti/archive/v0.9.7.tar.gz'
sha1 'ae1f86f7e18ee05cb6f9a9f1320d7f833d0bdd56'
head 'https://github.com/mth/yeti.git'
def install
system "ant jar"
prefix.install "yeti.jar"
(bin+'yeti').write <<-EOS.undent
#!/bin/sh
YETI=#{prefix}/yeti.jar
java -server -jar "$YETI" "$@"
EOS
end
end
|