aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Björklund2010-04-17 13:49:53 +0200
committerAdam Vandenberg2010-06-15 12:51:14 -0700
commit19edb1fc576154fc763e40d6f2afe00a4a202662 (patch)
treeb07f2c0f97b4d51d40b45df53ccb72ec3be428a5 /Library/Formula
parent8a4c3b865acb6e7ad3fa3269030de2dc41dc6423 (diff)
downloadhomebrew-19edb1fc576154fc763e40d6f2afe00a4a202662.tar.bz2
New formula, Play
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Updated to 1.0.3 * Install to libexec so we don't get jars in lib
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/play.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/play.rb b/Library/Formula/play.rb
new file mode 100644
index 000000000..e25f4bb99
--- /dev/null
+++ b/Library/Formula/play.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Play <Formula
+ url 'http://download.playframework.org/releases/play-1.0.3.zip'
+ homepage 'http://www.playframework.org/'
+ md5 '25d3197c83cc60bde9281d519fae0735'
+
+ def install
+ rm Dir['*.bat']
+ libexec.install Dir['*']
+ bin.mkpath
+ ln_s libexec+'play', bin
+ end
+end