blob: 9b9d08acc2e12ef7e3dda6366e51ee55fbd02d69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Hr < Formula
homepage 'https://github.com/LuRsT/hr'
url 'https://github.com/LuRsT/hr/archive/1.1.tar.gz'
sha1 '72e0a7836fe5181205de816bb5e0d44be3a8961f'
head 'https://github.com/LuRsT/hr', :branch => 'master'
def install
bin.install 'hr'
man1.install 'hr.1'
end
test do
system "#{bin}/hr", "-#-"
end
end
|