88779ade49
Closes Homebrew/homebrew#14653.
13 lines
365 B
Ruby
13 lines
365 B
Ruby
require 'formula'
|
|
|
|
class Doubledown < Formula
|
|
url 'https://github.com/devstructure/doubledown/tarball/v0.0.2'
|
|
homepage 'https://github.com/devstructure/doubledown'
|
|
sha1 '518d9df0457b6ce464679f8db4c7f692c7c72a9f'
|
|
head 'https://github.com/devstructure/doubledown.git'
|
|
|
|
def install
|
|
bin.install Dir['bin/*']
|
|
man1.install Dir['man/man1/*.1']
|
|
end
|
|
end
|