blob: f8698dee39f54705a6d228f46c27e459b8f4cbd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Play < Formula
homepage 'http://www.playframework.org/'
url 'http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip'
sha1 '0708a30906673b5cded859b9d3d772a01855e07a'
head 'https://github.com/playframework/Play20.git'
devel do
url 'http://downloads.typesafe.com/play/2.1.1-RC1/play-2.1.1-RC1.zip'
sha1 'c7e0a3e6b802efbce1f2422d6852ec4828731e30'
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`"
end
bin.install_symlink libexec+'play'
end
end
|