homebrew-core/Formula/tty-clock.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

17 lines
473 B
Ruby

class TtyClock < Formula
desc "Analog clock in ncurses"
homepage "https://github.com/xorg62/tty-clock"
url "https://github.com/xorg62/tty-clock/archive/v0.1.tar.gz"
sha256 "866ee25c9ef467a5f79e9560c8f03f2c7a4c0371fb5833d5a311a3103e532691"
head "https://github.com/xorg62/tty-clock.git"
def install
inreplace "Makefile", "/usr/local/bin/", "#{bin}/"
system "make"
system "make", "install"
end
test do
system "#{bin}/tty-clock -i"
end
end