2010-04-17 11:49:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Play < Formula
|
2010-04-17 11:49:53 +00:00
|
|
|
homepage 'http://www.playframework.org/'
|
2013-04-04 11:00:22 +00:00
|
|
|
url 'http://downloads.typesafe.com/play/2.1.1/play-2.1.1.zip'
|
|
|
|
sha1 '3b1a0c3ca23dde36113d935b85d7f4d45f05923b'
|
2010-04-17 11:49:53 +00:00
|
|
|
|
2012-12-07 17:49:50 +00:00
|
|
|
head 'https://github.com/playframework/Play20.git'
|
|
|
|
|
2010-04-17 11:49:53 +00:00
|
|
|
def install
|
2012-03-13 23:37:35 +00:00
|
|
|
rm Dir['*.bat'] # remove windows' bat files
|
2010-04-17 11:49:53 +00:00
|
|
|
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'
|
2010-04-17 11:49:53 +00:00
|
|
|
end
|
2012-03-16 03:08:17 +00:00
|
|
|
end
|