aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/abfind.rb2
-rw-r--r--Library/Formula/aqua-less.rb2
-rw-r--r--Library/Formula/chmox.rb2
-rw-r--r--Library/Formula/imagesnap.rb2
-rw-r--r--Library/Formula/mailtomutt.rb2
-rw-r--r--Library/Formula/otx.rb2
-rw-r--r--Library/Formula/platypus.rb4
-rw-r--r--Library/Formula/skim.rb2
-rw-r--r--Library/Formula/sleepnow.rb2
-rw-r--r--Library/Formula/sublercli.rb2
10 files changed, 11 insertions, 11 deletions
diff --git a/Library/Formula/abfind.rb b/Library/Formula/abfind.rb
index f287310f5..cd1ddcac4 100644
--- a/Library/Formula/abfind.rb
+++ b/Library/Formula/abfind.rb
@@ -6,7 +6,7 @@ class Abfind <Formula
homepage 'http://iharder.sourceforge.net/current/macosx/abfind/'
def install
- system "xcodebuild"
+ system "xcodebuild SYMROOT=build"
bin.install "build/Release/abfind"
end
end
diff --git a/Library/Formula/aqua-less.rb b/Library/Formula/aqua-less.rb
index 2e89bac4b..d18fbd030 100644
--- a/Library/Formula/aqua-less.rb
+++ b/Library/Formula/aqua-less.rb
@@ -12,7 +12,7 @@ class AquaLess <Formula
end
def install
- system "xcodebuild", "-sdk", "macosx10.5"
+ system "xcodebuild", "-sdk", "macosx10.5", "SYMROOT=build"
bin.install "build/Release/aless"
prefix.install "build/Release/AquaLess.app"
diff --git a/Library/Formula/chmox.rb b/Library/Formula/chmox.rb
index b15a34f8c..7412a8fea 100644
--- a/Library/Formula/chmox.rb
+++ b/Library/Formula/chmox.rb
@@ -5,7 +5,7 @@ class Chmox <Formula
homepage 'http://chmox.sourceforge.net'
def install
- system "xcodebuild"
+ system "xcodebuild SYMROOT=build"
prefix.install "build/Default/Chmox.app"
end
diff --git a/Library/Formula/imagesnap.rb b/Library/Formula/imagesnap.rb
index 003a18400..f0997928e 100644
--- a/Library/Formula/imagesnap.rb
+++ b/Library/Formula/imagesnap.rb
@@ -6,7 +6,7 @@ class Imagesnap <Formula
md5 'eddd65d04782cc7538c009cf8a6f7568'
def install
- system "xcodebuild -project ImageSnap.xcodeproj"
+ system "xcodebuild -project ImageSnap.xcodeproj SYMROOT=build"
bin.install "build/Release/imagesnap"
end
end
diff --git a/Library/Formula/mailtomutt.rb b/Library/Formula/mailtomutt.rb
index 285f99bf9..8235e34cf 100644
--- a/Library/Formula/mailtomutt.rb
+++ b/Library/Formula/mailtomutt.rb
@@ -6,7 +6,7 @@ class Mailtomutt <Formula
md5 'ce108e8574df129425d8156ff8b830bf'
def install
- system "xcodebuild"
+ system "xcodebuild SYMROOT=build"
prefix.install "build/Default/MailtoMutt.app"
end
diff --git a/Library/Formula/otx.rb b/Library/Formula/otx.rb
index ad20ee2da..e4e37733a 100644
--- a/Library/Formula/otx.rb
+++ b/Library/Formula/otx.rb
@@ -5,7 +5,7 @@ class Otx <Formula
homepage 'http://otx.osxninja.com/'
def install
- system 'xcodebuild'
+ system 'xcodebuild SYMROOT=build'
build = Pathname.getwd + 'build/Release'
bin.install build+"otx"
prefix.install build+"otx.app"
diff --git a/Library/Formula/platypus.rb b/Library/Formula/platypus.rb
index e53f87d6c..7aead5be2 100644
--- a/Library/Formula/platypus.rb
+++ b/Library/Formula/platypus.rb
@@ -13,10 +13,10 @@ class Platypus <Formula
end
# Build main command-line binary, we don't care about the App
- system "xcodebuild", "-target", "platypus", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET="
+ system "xcodebuild", "-target", "platypus", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SYMROOT=build", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET="
# Build application sub-binary needed by command-line utility
- system "xcodebuild", "-target", "ScriptExec", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET="
+ system "xcodebuild", "-target", "ScriptExec", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SYMROOT=build", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET="
# Install binary and man page
bin.install "build/Deployment/platypus"
diff --git a/Library/Formula/skim.rb b/Library/Formula/skim.rb
index 5b00f1c67..3e9510a25 100644
--- a/Library/Formula/skim.rb
+++ b/Library/Formula/skim.rb
@@ -5,7 +5,7 @@ class Skim <Formula
homepage 'http://skim-app.sourceforge.net/'
def install
- system "xcodebuild"
+ system "xcodebuild SYMROOT=build"
prefix.install "build/Release/Skim.app"
end
diff --git a/Library/Formula/sleepnow.rb b/Library/Formula/sleepnow.rb
index df7631380..2f2c59c95 100644
--- a/Library/Formula/sleepnow.rb
+++ b/Library/Formula/sleepnow.rb
@@ -12,7 +12,7 @@ class Sleepnow <Formula
inreplace "SleepNow.xcodeproj/project.pbxproj", /SDKROOT.*$/, ''
# Build binary
- system "xcodebuild", "-target", "SleepNow", "-configuration", "Release", "ONLY_ACTIVE_ARCH=YES"
+ system "xcodebuild", "-target", "SleepNow", "-configuration", "Release", "ONLY_ACTIVE_ARCH=YES", "SYMROOT=build"
# Install binary and rename to lowercase
bin.install 'build/Release/SleepNow' => 'sleepnow'
diff --git a/Library/Formula/sublercli.rb b/Library/Formula/sublercli.rb
index cc6d00348..7aac5c2be 100644
--- a/Library/Formula/sublercli.rb
+++ b/Library/Formula/sublercli.rb
@@ -7,7 +7,7 @@ class Sublercli <Formula
def install
ENV.llvm
cd "SublerCLI" do
- system "xcodebuild -configuration Release ARCHS='-arch i386 -arch x86_64'"
+ system "xcodebuild -configuration Release ARCHS='-arch i386 -arch x86_64' SYMROOT=build"
bin.install "build/Release/SublerCLI"
end
end