homebrew-core/Formula/rolldice.rb
Matthew Robinson 5f3b34a9c7 rolldice 1.14
Closes Homebrew/homebrew#20465.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-21 17:19:13 -07:00

13 lines
332 B
Ruby

require 'formula'
class Rolldice < Formula
homepage 'https://github.com/sstrickl/rolldice'
url 'https://github.com/sstrickl/rolldice/archive/v1.14.tar.gz'
sha1 '56d1abbf6d84b3392f51c2c5a25c7227c2835c5b'
def install
system "make", "CC=#{ENV.cc}"
bin.install "rolldice"
man6.install gzip("rolldice.6")
end
end