mew.rb
require 'formula'
class Mew < Formula
homepage "http://www.mew.org/"
url "http://www.mew.org/Release/mew-6.6.tar.gz"
sha1 "3ba1bac6ed9a7a6a85d61b5946418914912063f3"
head "http://github.com/kazu-yamamoto/Mew.git"
depends_on "emacs"
def install
system "./configure", "--prefix=#{prefix}", "--with-emacs=/usr/local/bin/emacs"
system "make install"
end
end
同様にEmacs LispパッケージのFormulaを作成したいと思った方は、Emacs LispパッケージのFormulaをつくるときの注意もご覧ください。