aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/blueutil.rb
blob: 49a443cab7814c90a26f7bc15b0088baba0b98c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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