blob: 82772bda8805ca87126a6507dba05a90c7aa02d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
require 'formula'
class Mogenerator < Formula
  homepage 'http://rentzsch.github.io/mogenerator/'
  url 'https://github.com/rentzsch/mogenerator/archive/1.27.tar.gz'
  sha1 'd9defaa6352624cacbe8640aa82af8e14de74848'
  head 'https://github.com/rentzsch/mogenerator.git'
  bottle do
    cellar :any
    sha1 "5c4f33afe033e7e921ecb9ba0361076eab5c5ea3" => :mavericks
    sha1 "bf0063bb5ebc46d39f977d3b1e51abe8bd96135b" => :mountain_lion
    sha1 "ca6653a594d61ecad7cae0955ac8299de88e0a79" => :lion
  end
  depends_on :xcode => :build
  def install
    xcodebuild "-target", "mogenerator", "-configuration", "Release","SYMROOT=symroot", "OBJROOT=objroot"
    bin.install "symroot/Release/mogenerator"
  end
end
  |