0599f7d22f
Closes Homebrew/homebrew#17067. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
345 B
Ruby
12 lines
345 B
Ruby
require 'formula'
|
|
|
|
class Httptunnel < Formula
|
|
homepage 'http://www.nocrew.org/software/httptunnel.html'
|
|
url 'http://www.nocrew.org/software/httptunnel/httptunnel-3.3.tar.gz'
|
|
sha1 'e3fa5c6499cbad9202bb7a3ba8a5b6478a60a3f3'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|