blob: 53899d828b9fe9316e4a49d5fae85ee8f0254ad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Mailtomutt < Formula
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
system "xcodebuild SYMROOT=build"
prefix.install "build/Default/MailtoMutt.app"
end
def caveats; <<-EOS.undent
MaitoMutt.app was installed in:
#{prefix}
To symlink into ~/Applications:
brew linkapps
EOS
end
end
|