diff options
| author | Coy Krill | 2011-12-22 22:17:50 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-11 23:05:52 -0700 |
| commit | 6bdadd05485288fc3b17ad3fce683fce48458016 (patch) | |
| tree | 841ed3ef1b4f592efeee73fc4c9715127807432e /Library/Formula | |
| parent | 8984917393f17e09e251cf24a9aee7d44bbc8955 (diff) | |
| download | homebrew-6bdadd05485288fc3b17ad3fce683fce48458016.tar.bz2 | |
Griffon 0.9.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/griffon.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/griffon.rb b/Library/Formula/griffon.rb new file mode 100644 index 000000000..c5af2f1d0 --- /dev/null +++ b/Library/Formula/griffon.rb @@ -0,0 +1,21 @@ +require 'formula' + +class Griffon < Formula + homepage 'http://griffon.codehaus.org/' + url 'http://dist.codehaus.org/griffon/griffon/0.9.x/griffon-0.9.4-bin.tgz' + md5 'e3f7972462d47f30a2e7d3893b360489' + + def install + rm_f Dir["bin/*.bat"] + + prefix.install %w[LICENSE README] + libexec.install Dir['*'] + bin.install_symlink Dir["#{libexec}/bin/*"] + end + + def caveats; <<-EOS.undent + You should set the environment variable GRIFFON_HOME to + #{libexec} + EOS + end +end |
