de132ee928
This is an older text processing tool that is useful for doing alignment of trailing characters (e.g., block of /* */ comments). Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
341 B
Ruby
17 lines
341 B
Ruby
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
|