homebrew-core/Formula/mogenerator.rb
Nathan de Vries 1268dc1d2f Mogenerator 1.23.
* Install the Mogenerator default templates & provide instructions for
  copying them into "~/Library/Application Support/mogenerator".

* Force the use of Clang.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-09-03 11:44:31 -07:00

30 lines
949 B
Ruby

require 'formula'
class Mogenerator < Formula
url 'https://github.com/rentzsch/mogenerator/tarball/1.23'
homepage 'http://rentzsch.github.com/mogenerator/'
md5 'cb6bcbb1fe8303a89e8ee27b789ac8ed'
head "https://github.com/rentzsch/mogenerator.git"
def install
ENV.clang
system "xcodebuild -target mogenerator -configuration Release SYMROOT=symroot OBJROOT=objroot"
bin.install "symroot/Release/mogenerator"
# Install default demplates
(prefix+'templates').install Dir['templates/*.motemplate']
end
def caveats; <<-EOS.undent
A default set of Mogenerator templates have been installed to:
#{prefix}/templates
If you haven't written your own templates, you may wish to copy these for
your own use:
mkdir -p "#{ENV['HOME']}/Library/Application Support/mogenerator"
cp #{prefix}/templates/*.motemplate "#{ENV['HOME']}/Library/Application Support/mogenerator/"
EOS
end
end