blob: b5e520273c4e95f4a7ee4c4cbc3fb5590994370a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class Cdpr < Formula
  homepage 'http://www.monkeymental.com/'
  url 'https://downloads.sourceforge.net/project/cdpr/cdpr/2.4/cdpr-2.4.tgz'
  sha1 '45cc185ad0eb16178a795a46e676fa698eedb832'
  def install
    # Makefile hardcodes gcc and other atrocities
    system "#{ENV.cc} #{ENV.cflags} cdpr.c cdprs.c conffile.c #{ENV.ldflags} -lpcap -o cdpr"
    bin.install "cdpr"
  end
  def caveats
    "run cdpr sudo'd in order to avoid the error: 'No interfaces found! Make sure pcap is installed.'"
  end
end
 |