aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMatthew Robinson2013-06-13 20:45:52 +0800
committerAdam Vandenberg2013-06-21 17:19:13 -0700
commitd3123c90ea3074e7a328a82d3ac2ceaef0492c26 (patch)
tree2c6958b3e922a7736df0c092a5a4e1be35bde50d /Library
parent6a43bb5be7dd12b67597008129f5a92617c3ad12 (diff)
downloadhomebrew-d3123c90ea3074e7a328a82d3ac2ceaef0492c26.tar.bz2
rolldice 1.14
Closes #20465. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/rolldice.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/rolldice.rb b/Library/Formula/rolldice.rb
new file mode 100644
index 000000000..a35f0917d
--- /dev/null
+++ b/Library/Formula/rolldice.rb
@@ -0,0 +1,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