質問
Play 2.1 RC2の自作式はありますか?私はグーグルで検索しようとしましたが、運がありません。ありがとう!
更新1
わかったと思います。RC1の式を見つけ、それを変更してRC2の式を作成しました。私は今それをテストしています。これが、ローカルマシンで作成したplay.rbの内容です。
# Recipe for play-2.1-RC2
require 'formula'
class Play < Formula
homepage 'http://www.playframework.org/'
url 'http://download.playframework.org/releases/play-2.1-RC2.zip'
sha1 'cd25571250b753cec81e916059025465e541637d'
version '2.1-RC2'
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
更新2
上記のファイルの公開要点を作成しました。したがって、 Play2.1RC2をインストールするために使用できる最後のコマンドは次のとおりです。
brew install https://gist.github.com/raw/4579402/play.rb
以下を使用して、以前にインストールしたバージョンのPlayのリンクを解除する必要がある場合があります。
brew unlink play
更新3
今日(2013年2月3日)現在、Farukによって提案されたbrewコマンドはまだRC2をインストールしているので、RC4が欲しかった。これがPlay2.1RC4をインストールするコマンドです。
brew install https://gist.github.com/raw/4705322/play.rb