homebrew-core/Formula/play.rb
Ealden Esto E. Escanan c0187d920c Play 1.2.4
Announcement: http://twitter.com/#!/playframework/status/142648589745799168

Closes Homebrew/homebrew#8940.

Signed-off-by: Ealden Esto E. Escanan <ealden@gmail.com>
Closes Homebrew/homebrew#8940.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-02 11:24:40 -08:00

15 lines
374 B
Ruby

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