tmpwatch 2.11

Closes Homebrew/homebrew#21649.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
KAWACHI Takashi 2013-08-04 18:05:14 +09:00 committed by Adam Vandenberg
parent 62e4bcfae1
commit e37bddf1e5
1 changed files with 13 additions and 0 deletions

13
Formula/tmpwatch.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Tmpwatch < Formula
homepage 'https://fedorahosted.org/tmpwatch/'
url 'https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-2.11.tar.bz2'
sha1 'c578dd98e5ea64ad987a95ae55926685a0df0659'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end