3ad9a0896f
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>
17 lines
487 B
Ruby
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
|