2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-04 01:26:09 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ScalaDocs < Formula
|
2010-12-31 03:53:13 +00:00
|
|
|
homepage 'http://www.scala-lang.org/'
|
|
|
|
url 'http://www.scala-lang.org/downloads/distrib/files/scala-2.8.1.final-devel-docs.tgz'
|
|
|
|
version '2.8.1'
|
|
|
|
md5 'afd5c7d3073bd735a25cfc4ed61f3543'
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Scala < Formula
|
2010-07-14 16:52:07 +00:00
|
|
|
homepage 'http://www.scala-lang.org/'
|
2010-11-09 20:25:38 +00:00
|
|
|
url 'http://www.scala-lang.org/downloads/distrib/files/scala-2.8.1.final.tgz'
|
|
|
|
version '2.8.1'
|
|
|
|
md5 '4fa66742341b5c9f6877ce64d409cb92'
|
2009-09-04 01:26:09 +00:00
|
|
|
|
2010-12-31 03:53:13 +00:00
|
|
|
def options
|
|
|
|
[['--with-docs', 'Also install library documentation']]
|
|
|
|
end
|
|
|
|
|
2009-09-04 01:26:09 +00:00
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
rm_f Dir["bin/*.bat"]
|
2010-08-08 15:49:45 +00:00
|
|
|
doc.install Dir['doc/*']
|
2010-02-18 18:22:20 +00:00
|
|
|
man1.install Dir['man/man1/*']
|
2010-08-08 15:49:45 +00:00
|
|
|
libexec.install Dir['*']
|
|
|
|
bin.mkpath
|
|
|
|
Dir["#{libexec}/bin/*"].each { |f| ln_s f, bin }
|
2010-12-31 03:53:13 +00:00
|
|
|
|
|
|
|
if ARGV.include? '--with-docs'
|
|
|
|
ScalaDocs.new.brew { doc.install Dir['*'] }
|
|
|
|
end
|
2009-09-04 01:26:09 +00:00
|
|
|
end
|
|
|
|
end
|