2010-06-17 18:07:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mailtomutt < Formula
|
2010-06-17 18:07:29 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/mailtomutt/MailtoMutt/v0.4.1/mailtomutt-0.4.1.tar.bz2'
|
|
|
|
homepage 'http://mailtomutt.sourceforge.net'
|
|
|
|
md5 'ce108e8574df129425d8156ff8b830bf'
|
|
|
|
|
|
|
|
def install
|
2011-03-03 20:29:10 +00:00
|
|
|
system "xcodebuild SYMROOT=build"
|
2010-06-17 18:07:29 +00:00
|
|
|
prefix.install "build/Default/MailtoMutt.app"
|
|
|
|
end
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
MaitoMutt.app was installed in:
|
|
|
|
#{prefix}
|
2010-06-17 18:07:29 +00:00
|
|
|
|
2010-08-08 18:33:13 +00:00
|
|
|
To symlink into ~/Applications:
|
2010-04-07 05:58:35 +00:00
|
|
|
brew linkapps
|
2010-06-17 18:07:29 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|