homebrew-core/Formula/blueutil.rb
Michael Lapinsky cf753c67f0 Added blueutil
* Utility for querying and mutating bluetooth power and discoverability
* state

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-11-29 21:17:45 -08:00

12 lines
310 B
Ruby

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