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>
13 lines
327 B
Ruby
13 lines
327 B
Ruby
require 'formula'
|
|
|
|
class Drip < Formula
|
|
homepage 'https://github.com/flatland/drip'
|
|
url 'https://github.com/flatland/drip/archive/0.2.3.tar.gz'
|
|
sha1 '01f498c20444d5295ffc5c531f7f8a4a894681c6'
|
|
|
|
def install
|
|
system 'make'
|
|
libexec.install %w{ bin src Makefile }
|
|
bin.install_symlink libexec/'bin/drip'
|
|
end
|
|
end
|