aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tmpwatch.rb
diff options
context:
space:
mode:
authorKAWACHI Takashi2013-08-04 18:05:14 +0900
committerAdam Vandenberg2013-08-05 09:20:42 -0700
commitb225df4694f582149655050bc0980c6efbd66e7b (patch)
tree1d66902ad1a0291c2f4f95b9ee117818a5a22ceb /Library/Formula/tmpwatch.rb
parentb1637d54994837fffb398a8cb8c8b1d4b3ce7176 (diff)
downloadhomebrew-b225df4694f582149655050bc0980c6efbd66e7b.tar.bz2
tmpwatch 2.11
Closes #21649. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/tmpwatch.rb')
-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