/opt/homebrew に Homebrew をインストールするワンライナー Homebrew はデフォルトでは /usr/local がインストール先になる。デフォルトのままでいいのなら Homebrew のインストールは簡単で、 % /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"だけで完了する。しかし、私の環境では /usr/local は case-insensitive なので、case-sensitive な /opt/homebrew に Homebrew をインストールしたい。この場合でもワンライナーでインストールが可能で、 % mkdir -p /opt/homebrew && curl -L https://github.com/mxcl/homebrew/tarball/mast