aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tmpwatch.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/tmpwatch.rb b/Library/Formula/tmpwatch.rb
new file mode 100644
index 000000000..26fa081d2
--- /dev/null
+++ b/Library/Formula/tmpwatch.rb
@@ -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