homebrew-core/Formula/drip.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

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