blob: f04586ff64d5b082fcd142f8c857e54a33f734d0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class Clockywock < Formula
  homepage 'http://soomka.com/'
  url 'http://soomka.com/clockywock-0.3.1a.tar.gz'
  sha1 '6df4c4e6bc2c7f2f8bd3534b46da59b8a80b4e04'
  def install
    system "make"
    bin.install "clockywock"
    man7.install "clockywock.7"
  end
  test do
    system "#{bin}/clockywock -h"
  end
end
 |