blob: cf0e148b711dd5d177cf740e083636feaf4902cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class TtyClock < Formula
homepage 'https://github.com/xorg62/tty-clock'
url 'https://github.com/xorg62/tty-clock/archive/v0.1.tar.gz'
sha1 '5350a9c6c391f8a87fd8f467ca3aeb932585e69e'
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
|