2010-04-17 11:49:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Play <Formula
|
2010-11-02 09:35:00 +00:00
|
|
|
url 'http://download.playframework.org/releases/play-1.1.zip'
|
2010-04-17 11:49:53 +00:00
|
|
|
homepage 'http://www.playframework.org/'
|
2010-11-02 09:35:00 +00:00
|
|
|
md5 '54513b11dc4eacd68d01f5c59bb8ec97'
|
2010-04-17 11:49:53 +00:00
|
|
|
|
|
|
|
def install
|
2010-11-25 02:41:11 +00:00
|
|
|
rm_rf 'python' # we don't need the bundled Python for windows
|
2010-04-17 11:49:53 +00:00
|
|
|
rm Dir['*.bat']
|
|
|
|
libexec.install Dir['*']
|
|
|
|
bin.mkpath
|
|
|
|
ln_s libexec+'play', bin
|
|
|
|
end
|
|
|
|
end
|