Add formula to build SublerCLI from SVN
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
7d63042cad
commit
2b8184d1e6
1 changed files with 14 additions and 0 deletions
14
Formula/sublercli.rb
Normal file
14
Formula/sublercli.rb
Normal 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
|
Loading…
Reference in a new issue