blob: 9934950e3dac969e55d8bcc8ea8d6eef2be77200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Tal < Formula
homepage 'http://thomasjensen.com/software/tal/'
url 'http://thomasjensen.com/software/tal/tal-1.9.tar.gz'
sha1 'c889477eee1ca362c071667563882c6aed38c0cb'
def install
system "make linux"
bin.install 'tal'
man1.install 'tal.1'
end
test do
system "#{bin}/tal", "/etc/passwd"
end
end
|