snow leopardにmecabとrubyバインディングインストール

http://www.sssg.org/blogs/naoya/archives/1883
どうやらsnow leopardはextconf.rbを修正しないとだめ


しないでmecab rubyバインディングを入れて使うとこういうエラーが出る

`initialize': tagger.cpp(150) [load_dictionary_resource(param)] param.cpp(71) [ifs] no such file or directory: ./dicrc (RuntimeError)

portsではなくhomebrewでmecabは入れた

brew install mecab mecab-ipadic

http://sourceforge.net/projects/mecab/files/ からmecab-ruby-0.98をダウンロード

extconf.rbの$CFLAGの下に

$LDFLAGS = '-L/usr/local/lib'

を加える

rvm use 1.8.7
ruby extconf.rb
make
make install