quotatool 1.6.2

Closes Homebrew/homebrew#17071.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Johan Ekenberg 2013-01-14 13:31:17 +01:00 committed by Adam Vandenberg
parent 44923b43c3
commit cfd2a745ee

14
Formula/quotatool.rb Normal file
View file

@ -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