homebrew-core/Formula/mailtomutt.rb
Alexis Hildebrandt f0882a6104 Fix xcodebuild based formulae
Add SYMROOT for xcodebuild in case the Xcode defaults
PBXApplicationwideBuildSettings specify a custom build location

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-05 11:19:34 -08:00

21 lines
502 B
Ruby

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