2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-04 01:26:09 +00:00
|
|
|
|
|
|
|
class Scala <Formula
|
2009-09-23 09:39:50 +00:00
|
|
|
@homepage='http://www.scala-lang.org/'
|
2009-11-28 21:50:17 +00:00
|
|
|
@url='http://www.scala-lang.org/downloads/distrib/files/scala-2.7.7.final.tgz'
|
|
|
|
@version='2.7.7'
|
|
|
|
@md5='5d2294d5aab72fec869c0ba666d28b7e'
|
2009-09-04 01:26:09 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install Dir['*']
|
2009-12-18 17:59:01 +00:00
|
|
|
FileUtils.rm_f Dir["#{bin}/*.bat"]
|
2009-09-04 01:26:09 +00:00
|
|
|
FileUtils.mv prefix+'man', share
|
|
|
|
end
|
|
|
|
end
|