homebrew-core/Formula/play.rb

15 lines
369 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Play < Formula
homepage 'http://www.playframework.org/'
2012-02-13 00:52:43 +00:00
url 'http://download.playframework.org/releases/play-1.2.4.zip'
md5 'ec8789f8cc02927ece536d102f5e649e'
def install
rm_rf 'python' # we don't need the bundled Python for windows
rm Dir['*.bat']
libexec.install Dir['*']
2012-02-13 00:52:43 +00:00
bin.install_symlink libexec+'play'
end
end