blob: 976d566c1424d39773f90a01efed4dc371dfc3c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
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
  |