Add formula to build SublerCLI from SVN

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Chris Hoffman 2010-02-06 12:14:07 -06:00 committed by Adam Vandenberg
parent 7d63042cad
commit 2b8184d1e6

14
Formula/sublercli.rb Normal file
View file

@ -0,0 +1,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'"
bin.install "build/Release/SublerCLI"
end
end
end