Last active
August 29, 2015 14:14
-
-
Save steini/b9b271d44153ce08bd8d to your computer and use it in GitHub Desktop.
install play framework version 2.1.1 through brew
This file contains hidden or 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
# Recipe for play-2.1.1-RC2 | |
require 'formula' | |
class Play < Formula | |
homepage 'http://www.playframework.org/' | |
url 'http://downloads.typesafe.com/play/2.1.1/play-2.1.1.zip' | |
sha1 '3b1a0c3ca23dde36113d935b85d7f4d45f05923b' | |
version '2.1.1' | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brew install https://gist.githubusercontent.com/steini/b9b271d44153ce08bd8d/raw/82e57ff188cd454eddc6912a473982d42ec9080b/play.rb