|
Building
MacVim-KaoriYaのビルド方法
Gitリポジトリからビルドするhttp://github.com/splhack/macvim git clone git://github.com/splhack/macvim.git cd macvim git checkout -b master origin/master https://github.com/b4winckler/macvim/wiki/Building を参照 HomeBrewでビルドするhttps://github.com/splhack/homebrew https://github.com/splhack/homebrew/blob/master/Library/Formula/cmigemo.rb https://github.com/splhack/homebrew/blob/master/Library/Formula/ctags-objc-ja.rb https://github.com/splhack/homebrew/blob/master/Library/Formula/vimproc.rb https://github.com/splhack/homebrew/blob/master/Library/Formula/macvim-kaoriya.rb ビルド brew install --HEAD macvim-kaoriya |
► Sign in to add a comment
Dependency 'cmigemo' not found.というエラーが出るのですがどのように対応すればよいのかお教えいただけないでしょうか。。
portindexが必要と思われます。ドキュメントを更新してみました。
MacPorts?? 1.9.1 on SnowLeopard? でやると cmigemo で失敗するみたいです。
こうしたら↓とりあえず通りました。
--- Portfile.ORG 2010-07-26 07:32:42.000000000 +0900 +++ Portfile 2010-07-26 07:37:34.000000000 +0900 @@ -89,9 +89,9 @@ variant utf8 { post-build { - system "mkdir dict/utf-8.d" + system "mkdir -p ${worksrcpath}/dict/utf-8.d" foreach DIC ${dics} { - system "nkf -w < dict/${DIC} > dict/utf-8.d/${DIC}" + system "nkf -w < ${worksrcpath}/dict/${DIC} > ${worksrcpath}/dict/utf-8.d/${DIC}" } }ありがとうございます。修正しました。