aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEdward Muller2011-07-30 18:49:23 -0700
committerAdam Vandenberg2011-08-13 19:04:00 -0700
commit8de63fcf47caf99048a1387d1e64edd460a5e799 (patch)
tree1fcda1e94639e3b9a9e2c272b800322bdc0c2dce /Library/Formula
parent72a2bb47b14af525656390cc2263a5bb6d326b09 (diff)
downloadhomebrew-8de63fcf47caf99048a1387d1e64edd460a5e799.tar.bz2
Since 1.1
`since` is a stateful `tail`. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/since.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/since.rb b/Library/Formula/since.rb
new file mode 100644
index 000000000..4ac41ef66
--- /dev/null
+++ b/Library/Formula/since.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Since < Formula
+ url 'http://welz.org.za/projects/since/since-1.1.tar.gz'
+ homepage 'http://welz.org.za/projects/since'
+ md5 '7a6cfe573d0d2ec7b6f53fe9432a486b'
+
+ def install
+ system "make"
+ bin.install "since"
+ man1.install "since.1"
+ end
+end