homebrew-core/Formula/blueutil.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

17 lines
487 B
Ruby

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'
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
system 'xcodebuild', 'SDKROOT=', 'SYMROOT=build'
bin.install 'build/Release/blueutil'
end
end