homebrew-core/Formula/tal.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
404 B
Ruby

class Tal < Formula
desc "Align line endings if they match"
homepage "http://thomasjensen.com/software/tal/"
url "http://thomasjensen.com/software/tal/tal-1.9.tar.gz"
sha256 "5d450cee7162c6939811bca945eb475e771efe5bd6a08b520661d91a6165bb4c"
def install
system "make", "linux"
bin.install "tal"
man1.install "tal.1"
end
test do
system "#{bin}/tal", "/etc/passwd"
end
end