aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/blueutil.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/blueutil.rb b/Library/Formula/blueutil.rb
new file mode 100644
index 000000000..49a443cab
--- /dev/null
+++ b/Library/Formula/blueutil.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Blueutil < Formula
+ head 'https://github.com/toy/blueutil.git'
+ homepage 'https://github.com/toy/blueutil'
+
+ def install
+ # Set to build with SDK=macosx10.6, but it doesn't actually need 10.6
+ system 'xcodebuild', 'SDKROOT='
+ bin.install 'build/Release/blueutil'
+ end
+end