Last active
December 12, 2015 05:28
-
-
Save sorenmat/4722259 to your computer and use it in GitHub Desktop.
Gist for installing play 2.1 via homebrew
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 | |
homepage 'http://www.playframework.org/' | |
url 'http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip' | |
sha1 '0708a30906673b5cded859b9d3d772a01855e07a' | |
version '2.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