homebrew-core/Formula/play.rb
Tianyi Cui 15f90762b1 play: we don't need the bundled Python for windows
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-24 18:53:53 -08:00

15 lines
371 B
Ruby

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