blob: 95e05e7eb34768403881bcf47997fd27cb0012ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Pidof <Formula
  url 'http://www.nightproductions.net/downloads/pidof_source.tar.gz'
  homepage 'http://www.nightproductions.net/cli.htm'
  md5 '663763ee1feb0596fa3731aafa7e1880'
  version '0.1.4'
  def install
    system "make all"
    man1.install gzip("pidof.1")
    bin.install "pidof"
  end
end
  |