blob: 3ecf04caa426bb45989ce48a54f2dab8c6fa5999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Play < Formula
  homepage 'http://www.playframework.org/'
  url 'http://download.playframework.org/releases/play-1.2.4.zip'
  md5 'ec8789f8cc02927ece536d102f5e649e'
  def install
    rm_rf 'python' # we don't need the bundled Python for windows
    rm Dir['*.bat']
    libexec.install Dir['*']
    bin.install_symlink libexec+'play'
  end
end
  |