homebrew がインストールされていること前提
流れとしては下記の通り。
1. mxcl/homebrew の fork
Project ページへいって、https://github.com/mxcl/homebrew Forkする。
2. Formula の作成/修正(今回は修正だけ)
# とりあえず更新 brew update # 作業用ディレクトリへ cd /usr/local # pull request 用ブランチの作成 git checkout -b work # Formula の修正 brew edit FORMULA # コミット git add PATH_TO_FORMULA_FILE git commit -m "update hoge" # リモートレポジトリの追加 git remote add fork YOUR_GITHUB_FORK_PROJECT # push git push fork work
3. pull request 送る
自分の homebrew プロジェクトページを開いて Pull request ボタン押して色々書いて終わり。