aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Ekenberg2013-01-14 13:31:17 +0100
committerAdam Vandenberg2013-01-14 06:39:00 -0800
commitcdffc0eb35d88d7d84efe752919631c2497dc09b (patch)
tree678e5adc496c55883ea4f52123ed5af24fb3088b
parente5a80b573a351b42b3a04287d5d678a34abcaae9 (diff)
downloadhomebrew-cdffc0eb35d88d7d84efe752919631c2497dc09b.tar.bz2
quotatool 1.6.2
Closes #17071. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/quotatool.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/quotatool.rb b/Library/Formula/quotatool.rb
new file mode 100644
index 000000000..13efe09f1
--- /dev/null
+++ b/Library/Formula/quotatool.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Quotatool < Formula
+ homepage 'http://quotatool.ekenberg.se'
+ url 'http://quotatool.ekenberg.se/quotatool-1.6.2.tar.gz'
+ sha1 '632f8f470530928c57912eb95dfa540c55599c18'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ sbin.mkpath
+ man8.mkpath
+ system "make install"
+ end
+end