homebrew-core/Formula/play.rb
Sietse de Kaper c223747676 Updated Play to 1.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

Fixes Homebrew/homebrew#3027
2010-11-02 07:48:57 -07:00

14 lines
305 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 Dir['*.bat']
libexec.install Dir['*']
bin.mkpath
ln_s libexec+'play', bin
end
end