diff options
| author | Michael Lapinsky | 2011-04-29 22:30:47 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-11-29 21:17:45 -0800 | 
| commit | d8331da68e6ff1e247971ea86333a3ea9cad67a9 (patch) | |
| tree | 3ba68e45ce6841b2f1fc5b5705ab2bc6fea096f2 /Library/Formula/blueutil.rb | |
| parent | 49de8f2eb333adc18d8aca8422d6b2c5154eb4fc (diff) | |
| download | homebrew-d8331da68e6ff1e247971ea86333a3ea9cad67a9.tar.bz2 | |
Added blueutil
* Utility for querying and mutating bluetooth power and discoverability
* state
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/blueutil.rb')
| -rw-r--r-- | Library/Formula/blueutil.rb | 12 | 
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  | 
