homebrew-core/Formula/tal.rb

17 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