Created
August 23, 2011 19:32
-
-
Save j5ik2o/1166253 to your computer and use it in GitHub Desktop.
最新版のPlayのFormula
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Play < Formula | |
url 'http://download.playframework.org/releases/play-1.2.3.zip' | |
homepage 'http://www.playframework.org/' | |
md5 '75822b1ec443239a4467147a94882442' | |
def install | |
rm_rf 'python' # we don't need the bundled Python for windows | |
rm Dir['*.bat'] | |
libexec.install Dir['*'] | |
bin.mkpath | |
ln_s libexec+'play', bin | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment