homebrew-core/Formula/tal.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

17 lines
352 B
Ruby

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