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

class Httptunnel < Formula
  url 'http://www.nocrew.org/software/httptunnel/httptunnel-3.0.5.tar.gz'
  homepage 'http://www.nocrew.org/software/httptunnel.html'
  md5 '2a710f377c82ab4eb201458f7b9f99c5'

  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end