blob: 5bcf38236b44c491bd06d3a8a4ad13160993e2b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Doubledown < Formula
url 'https://github.com/devstructure/doubledown/tarball/v0.0.2'
homepage 'https://github.com/devstructure/doubledown'
md5 '0f540c6da691769ca1efa305ad18acb6'
head 'https://github.com/devstructure/doubledown.git'
def install
bin.install Dir['bin/*']
man1.install Dir['man/man1/*.1']
end
end
|