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