aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChris Hoffman2010-02-06 12:14:07 -0600
committerAdam Vandenberg2010-06-17 09:42:11 -0700
commit2153a21bafc3bcbea4ff52f26baf730a09ec4cec (patch)
treed6de1b9f8e3d673fe84dd9ff30569925ee9dc08b /Library/Formula
parent74c092fc35c477999434b066572c42ea526c50e4 (diff)
downloadhomebrew-2153a21bafc3bcbea4ff52f26baf730a09ec4cec.tar.bz2
Add formula to build SublerCLI from SVN
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sublercli.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/sublercli.rb b/Library/Formula/sublercli.rb
new file mode 100644
index 000000000..cc6d00348
--- /dev/null
+++ b/Library/Formula/sublercli.rb
@@ -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