blob: 0329392d2fb3a53ad0c36ad7288ead2703a99184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Since < Formula
homepage 'http://welz.org.za/projects/since'
url 'http://welz.org.za/projects/since/since-1.1.tar.gz'
sha1 '67f07e8237d63f846cd8ca60b5a16fc32d4f81a5'
def install
system "make"
bin.install "since"
man1.install "since.1"
end
end
|