blob: fee1d6c1f5e8f81b9005c921e77097fddfd4c0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Fantom < Formula
url 'http://fan.googlecode.com/files/fantom-1.0.58.zip'
homepage 'http://fantom.org'
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"] 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
end
|