最近のemacs.rb [qiita.com] によると、
--japanese
オプションも取り込まれたらしいので、下記のようにして Emacs 24.3 をインストール。$ brew install emacs --srgb --cocoa --with-gnutls --japaneseMew は Homebrew で Mew-6.5 と stunnel を入れる事で動いた。
最初 Mew-6.3 をインストールしていて、stunnel との組み合わせに手こずったが、Mew-6.5 にしたらすんなり動いた。
自分で Mew-6.5 用の Homebrew の Formula を作ってしまったが、後で Gist で公開されている先人を発見。
ハッシュ関数のみ sha1 に変更したものをフォークしておいてみる。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Mew < Formula | |
desc "a mail reader for Emacs" | |
homepage "http://www.mew.org/" | |
url "http://www.mew.org/Release/mew-6.8.tar.gz" | |
version "6.8" | |
sha256 "cf44c4f9ca704ba1edce7134bc7f38a17361391d5be1090221431a3a06f6bf47" | |
def install | |
system "./configure", "--prefix=#{prefix}", "--with-emacs=/usr/bin/emacs" | |
system "make", "install" # if this fails, try separate make/make install steps | |
system "make", "install-info" | |
system "make", "install-jinfo" | |
end | |
test do | |
system "true" | |
end | |
end |