homebrew-core/Formula/play.rb

15 lines
309 B
Ruby
Raw Normal View History

require 'formula'
class Play <Formula
2010-07-27 16:45:05 +00:00
url 'http://download.playframework.org/releases/play-1.0.3.1.zip'
homepage 'http://www.playframework.org/'
2010-07-27 16:45:05 +00:00
md5 'b704cef8f2d8a68088ed0f80a4c4abe9'
def install
rm Dir['*.bat']
libexec.install Dir['*']
bin.mkpath
ln_s libexec+'play', bin
end
end