気がつけば一ヶ月以上放置状態ですが、気にせずCocoa Emacs と AUCTeX のインストールメモ。
Cocoa Emacsのインストール。
$ curl -O http://ftp.gnu.org/pub/gnu/emacs/emacs-23.2.tar.gz $ curl -O http://jaist.dl.sourceforge.jp/macemacsjp/47986/inline_patch-23.2-beta3.tar.gz $ tar xvfz emacs-23.2.tar.gz $ tar xvfz inline_patch-23.2-beta3.tar.gz $ cd emacs-23.2 $ patch -p0 < ../inline_patch-23.2-beta3/emacs-inline.patch $ ./configure --with-ns --without-x $ make bootstrap $ make install $ cd nextstep $ tar cf - Emacs.app | (cd /Applications; tar xfpB -)
AUCTeXのインストール。
$ curl -O http://ftp.gnu.org/pub/gnu/auctex/auctex-11.86.tar.gz
$ tar xvzf auctex-11.86.tar.gz
$ cd auctex-11.86
$ ./configure --with-emacs=/Applications/Emacs.app/Contents/MacOS/Emacs
--datarootdir=/Applications/Emacs.app/Contents/Resources
--prefix=/Applications/Emacs.app/Contents/Resources
--disable-preview
$ make
$ make install
