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

class Sersniff < Formula
  homepage 'http://www.earth.li/projectpurple/progs/sersniff.html'
  url 'http://www.earth.li/projectpurple/files/sersniff-0.0.5.tar.gz'
  sha1 'f320171e38ce8877646be65664328071254ed3ce'

  head 'git://the.earth.li/sersniff'

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