aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sublercli.rb
blob: b7bc4ecf6f6abd9ad5c531c0eb45528bc1cfbd59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Sublercli < Formula
  head 'http://subler.googlecode.com/svn/trunk/'
  homepage 'http://code.google.com/p/subler/'

  def install
    ENV.llvm
    cd "SublerCLI" do
      system "xcodebuild -configuration Release ARCHS='-arch i386 -arch x86_64' SYMROOT=build"
      bin.install "build/Release/SublerCLI"
    end
  end
end