homebrew-core/Formula/blueutil.rb

18 lines
487 B
Ruby
Raw Normal View History

require 'formula'
class Blueutil < Formula
homepage 'https://github.com/toy/blueutil'
url 'https://github.com/toy/blueutil/archive/v1.0.0.tar.gz'
sha1 'b1cce64f7fa87eb0cfa32ef8e1dfc1aa06dbbd98'
2012-02-26 15:36:40 +00:00
head 'https://github.com/toy/blueutil.git'
depends_on :xcode # For working xcodebuild.
def install
# Set to build with SDK=macosx10.6, but it doesn't actually need 10.6
2012-02-26 15:47:11 +00:00
system 'xcodebuild', 'SDKROOT=', 'SYMROOT=build'
bin.install 'build/Release/blueutil'
end
end