2011-05-05 00:38:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class ThcPptpBruter < Formula
|
|
|
|
homepage 'http://thc.org'
|
2013-01-28 03:21:09 +00:00
|
|
|
url 'http://freeworld.thc.org/releases/thc-pptp-bruter-0.1.4.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '88a797ed0dcfb79aba92b319e29d1c5d8c1b14a4'
|
2011-05-05 00:38:16 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# The function openpty() is defined in pty.h on Linux, but in util.h on OS X.
|
|
|
|
# See http://groups.google.com/group/sage-devel/msg/97916255b631e3e5
|
|
|
|
inreplace 'src/pptp_bruter.c', 'pty.h', 'util.h'
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|