diff options
Diffstat (limited to 'Library/Formula/fantom.rb')
| -rw-r--r-- | Library/Formula/fantom.rb | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Library/Formula/fantom.rb b/Library/Formula/fantom.rb index 94d984d7b..fee1d6c1f 100644 --- a/Library/Formula/fantom.rb +++ b/Library/Formula/fantom.rb @@ -1,17 +1,26 @@ require 'formula' -class Fantom <Formula - url 'http://fan.googlecode.com/files/fantom-1.0.57.zip' +class Fantom < Formula + url 'http://fan.googlecode.com/files/fantom-1.0.58.zip' homepage 'http://fantom.org' - md5 '5f5b7fbaae4e2cf76ded359c57530af2' + md5 '2a74bbb7f398bfed4eed1fa2d147f384' + + def options + [['--with-src', 'Also install fantom source'], + ['--with-examples', 'Also install fantom examples']] + end def install rm_f Dir["bin/*.exe", "lib/dotnet/*"] - rm_rf Dir["examples", "src"] + rm_rf Dir["examples"] unless ARGV.include? '--with-examples' + rm_rf Dir["src"] unless ARGV.include? '--with-src' + libexec.install Dir['*'] + bin.mkpath Dir["#{libexec}/bin/*"].each do |f| next unless File.extname(f).empty? + chmod 0755, f ln_s f, bin+File.basename(f) end end |
