homebrew-core/Formula/blueutil.rb

13 lines
310 B
Ruby
Raw Normal View History

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