blob: 7d0e55081344e92cccf0d06924d91252e2c0f035 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class Xtitle < Formula
homepage "http://www.cs.indiana.edu/~kinzler/xtitle/"
url "http://www.cs.indiana.edu/~kinzler/xtitle/xtitle-1.0.4.tgz"
sha256 "cadddef1389ba1c5e1dc7dd861545a5fe11cb397a3f692cd63881671340fcc15"
def install
bin.install "xtitle.sh" => "xtitle"
bin.install "xtctl.sh" => "xtctl"
man1.install "xtitle.man" => "xtitle.1"
end
test do
assert_equal "#{version}", shell_output("#{bin}/xtitle -V").chomp
end
end
|