aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sersniff.rb
blob: 3a1617281e157f5e5ab2236db2e566a4decbfac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Sersniff < Formula
  url 'http://www.earth.li/projectpurple/files/sersniff-0.0.5.tar.gz'
  homepage 'http://www.earth.li/projectpurple/progs/sersniff.html'
  md5 '5caf3262442b5e82c3de820ce3f76fa2'
  head 'git://the.earth.li/sersniff'

  def install
    system "make"
    bin.install "sersniff"
    man8.install "sersniff.8"
  end
end