aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hr.rb
blob: a066ea5611542b2098c95766f802f7d7744e6472 (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'

  def install
    bin.install 'hr'
    man1.install 'hr.1'
  end

  test do
    system "#{bin}/hr", "-#-"
  end
end