aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkeith lloyd2013-08-24 14:25:51 -0600
committerAdam Vandenberg2013-08-30 10:21:08 -0700
commitdbe21b42a2ad48546a05ce5c23f495fd10fc479a (patch)
tree7f0f0bfc679328cd17a715cbede04e3ea2813215
parentd439984f367aa662b0184ecd1a3cb8dcf2552b13 (diff)
downloadhomebrew-dbe21b42a2ad48546a05ce5c23f495fd10fc479a.tar.bz2
play: change HEAD repo
Added check to not apply relative symlink hack to play file for 2.2.x(HEAD and devel) Closes #22111. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/play.rb26
1 files changed, 18 insertions, 8 deletions
diff --git a/Library/Formula/play.rb b/Library/Formula/play.rb
index 3347d42d6..4e8483642 100644
--- a/Library/Formula/play.rb
+++ b/Library/Formula/play.rb
@@ -2,11 +2,10 @@ require 'formula'
class Play < Formula
homepage 'http://www.playframework.org/'
+ head 'https://github.com/playframework/playframework.git'
url 'http://downloads.typesafe.com/play/2.1.3/play-2.1.3.zip'
sha1 'f399da960980edc929011c07ef64ee868eca8a9f'
- head 'https://github.com/playframework/Play20.git'
-
devel do
url 'http://downloads.typesafe.com/play/2.2.0-M2/play-2.2.0-M2.zip'
version '2.2.0-M2'
@@ -14,12 +13,23 @@ class Play < Formula
end
def install
- rm Dir['*.bat'] # remove windows' bat files
- libexec.install Dir['*']
- inreplace libexec+"play" do |s|
- s.gsub! "$dir/", "$dir/../libexec/"
- s.gsub! "dir=`dirname $PRG`", "dir=`dirname $0` && dir=$dir/`dirname $PRG`"
+ system "./framework/build", "publish-local" if build.head?
+
+ # remove Windows .bat files
+ rm Dir['*.bat']
+ rm Dir["#{buildpath}/**/*.bat"] if build.head?
+
+ # apply workaround for relative symlink, remove block when stable version reaches 2.2.x.
+ # https://github.com/playframework/playframework/issues/1516
+ # https://github.com/playframework/playframework/pull/777
+ if build.stable?
+ inreplace buildpath/"play" do |s|
+ s.gsub! "$dir/", "$dir/../libexec/"
+ s.gsub! "dir=`dirname $PRG`", "dir=`dirname $0` && dir=$dir/`dirname $PRG`"
+ end
end
- bin.install_symlink libexec+'play'
+
+ libexec.install Dir['*']
+ bin.install_symlink libexec/'play'
end
end