blob: 162a45c3fc4768b4e9192c6b81816f510f5b3e4b (
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'
  md5 'a22e53f5f0d701a408e98e480311700b'
  def install
    system "make linux"
    bin.install 'tal'
    man1.install 'tal.1'
  end
  def test
    system "#{bin}/tal", "/etc/passwd"
  end
end
 |