blob: b6913d8c50165c048d6f87aa8878f18178c20917 (
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
25
26
|
require 'formula'
class Play < Formula
homepage 'http://www.playframework.org/'
head 'https://github.com/playframework/playframework.git'
url 'http://downloads.typesafe.com/play/2.2.2/play-2.2.2.zip'
sha1 '9a2fa3c6b9ee36375d814d775bec4335e427dcd2'
conflicts_with 'sox', :because => 'both install `play` binaries'
devel do
url 'http://downloads.typesafe.com/play/2.2.2-RC4/play-2.2.2-RC4.zip'
sha1 '4de17ab705ac04374ec7f7921d350536b7b13a1e'
end
def install
system "./framework/build", "publish-local" if build.head?
# remove Windows .bat files
rm Dir['*.bat']
rm Dir["#{buildpath}/**/*.bat"] if build.head?
libexec.install Dir['*']
bin.install_symlink libexec/'play'
end
end
|