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>
14 lines
373 B
Ruby
14 lines
373 B
Ruby
require 'formula'
|
|
|
|
class Doubledown < Formula
|
|
homepage 'https://github.com/devstructure/doubledown'
|
|
url 'https://github.com/devstructure/doubledown/archive/v0.0.2.tar.gz'
|
|
sha1 '533587be081d6222a389d30434c3229e8c46436b'
|
|
|
|
head 'https://github.com/devstructure/doubledown.git'
|
|
|
|
def install
|
|
bin.install Dir['bin/*']
|
|
man1.install Dir['man/man1/*.1']
|
|
end
|
|
end
|