blob: c3937c920400a632401a356d0f06a70041393715 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  | 
require 'formula'
class Dwatch < Formula
  homepage 'http://siag.nu/dwatch/'
  url 'http://siag.nu/pub/dwatch/dwatch-0.1.1.tar.gz'
  sha1 'd1588364fcbad85b7ba81fa027199e983de55435'
  def install
    # Makefile uses cp, not install
    bin.mkpath
    man1.mkpath
    system "make", "install",
                   "CC=#{ENV.cc}",
                   "PREFIX=#{prefix}",
                   "MANDIR=#{man}",
                   "ETCDIR=#{etc}"
    etc.install "dwatch.conf"
  end
  def test
    # '-h' is not actually an option, but it exits 0
    system "#{bin}/dwatch", "-h"
  end
end
  |