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