2013-12-18 03:06:49 +00:00
|
|
|
class Align < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Text column alignment filter"
|
2015-10-13 23:34:59 +00:00
|
|
|
homepage "https://www.cs.indiana.edu/~kinzler/align/"
|
2016-03-10 16:21:45 +00:00
|
|
|
url "https://www.cs.indiana.edu/~kinzler/align/align-1.7.5.tgz"
|
|
|
|
sha256 "cc692fb9dee0cc288757e708fc1a3b6b56ca1210ca181053a371cb11746969dd"
|
2013-12-18 03:06:49 +00:00
|
|
|
|
2014-06-29 03:47:43 +00:00
|
|
|
bottle do
|
2015-10-14 04:28:07 +00:00
|
|
|
cellar :any_skip_relocation
|
2016-09-26 08:47:24 +00:00
|
|
|
sha256 "4d07f4f2ae948de293afdc80a5a736cf81da7c335cec1778f5b7304debda6599" => :sierra
|
2016-03-10 17:19:26 +00:00
|
|
|
sha256 "c2c177c8be3b5a58e60f3a1f39d9fdd3cc3d39247d92be45142cd06ae80273bf" => :el_capitan
|
|
|
|
sha256 "caa9e8c3b3a9d946b95d5222b1518c5307499d57fe17f593ec3911f9cc6eace7" => :yosemite
|
|
|
|
sha256 "f903cb30e079f56c5743e2ca22a168c61d7a7c57b2cf6bc3c6492ed214a296a3" => :mavericks
|
2014-06-29 03:47:43 +00:00
|
|
|
end
|
|
|
|
|
2016-09-24 15:45:48 +00:00
|
|
|
conflicts_with "speech-tools", :because => "both install `align` binaries"
|
2015-11-01 22:13:08 +00:00
|
|
|
|
2013-12-18 03:06:49 +00:00
|
|
|
def install
|
2014-11-29 15:14:35 +00:00
|
|
|
system "make", "install", "BINDIR=#{bin}"
|
2013-12-18 03:06:49 +00:00
|
|
|
end
|
2014-04-13 20:35:46 +00:00
|
|
|
|
|
|
|
test do
|
2014-05-04 19:12:41 +00:00
|
|
|
assert_equal " 1 1\n12 12\n", pipe_output(bin/"align", "1 1\n12 12\n")
|
2014-04-13 20:35:46 +00:00
|
|
|
end
|
2013-12-18 03:06:49 +00:00
|
|
|
end
|