homebrew-core/Formula/xtitle.rb
Viktor Szakats 988e9c1e07 xtitle: use https homepage
Closes Homebrew/homebrew#44899.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-10-13 19:52:16 +01:00

16 lines
513 B
Ruby

class Xtitle < Formula
desc "Set window title and icon for your X terminal"
homepage "https://www.cs.indiana.edu/~kinzler/xtitle/"
url "https://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