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>
11 lines
258 B
Ruby
11 lines
258 B
Ruby
require 'formula'
|
|
|
|
class BrewPip < Formula
|
|
homepage 'https://github.com/josh/brew-pip'
|
|
url 'https://github.com/josh/brew-pip/archive/v0.1.2.tar.gz'
|
|
sha1 '49fbd82ceb601e98999cbd28c106a7c26ff16a2b'
|
|
|
|
def install
|
|
bin.install 'bin/brew-pip'
|
|
end
|
|
end
|