homebrew-core/Formula/play.rb

18 lines
497 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Play < Formula
homepage 'http://www.playframework.org/'
url 'http://download.playframework.org/releases/play-2.0.zip'
md5 '5b429c991be607c8e41203579c6b506e'
def install
rm Dir['*.bat'] # remove windows' bat files
libexec.install Dir['*']
2012-03-16 02:48:40 +00:00
inreplace libexec+"play" do |s|
s.gsub! "$dir/", "$dir/../libexec/"
s.gsub! "dir=`dirname $PRG`", "dir=`dirname $0` && dir=$dir/`dirname $PRG`"
end
2012-02-13 00:52:43 +00:00
bin.install_symlink libexec+'play'
end
end