blob: cc6d003487181a41c6eb3f402f279706a0c1b109 (
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'"
bin.install "build/Release/SublerCLI"
end
end
end
|