homebrew-core/Formula/since.rb
Edward Muller 7918a83734 Since 1.1
`since` is a stateful `tail`.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-13 19:04:00 -07:00

13 lines
282 B
Ruby

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