blob: 4f9f2468c34b7cc3c4c2690a83e42880726dd4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Griffon < Formula
homepage 'http://griffon.codehaus.org/'
url 'http://dl.bintray.com/content/aalmiray/Griffon/griffon-1.4.0-bin.tgz'
sha1 'a2cc25cf95388739929ad09800be9568ac02bab2'
def install
rm_f Dir["bin/*.bat"]
prefix.install_metafiles
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
|