homebrew-core/Formula/play.rb
Sietse de Kaper 0022a88b0c Play 1.2.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-07-05 09:40:29 -07:00

15 lines
374 B
Ruby

require 'formula'
class Play < Formula
url 'http://download.playframework.org/releases/play-1.2.2.zip'
homepage 'http://www.playframework.org/'
md5 'd50f34bacf02f1ebb90eb13920b14346'
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