Initial brew for pound.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
tim 2010-07-16 19:28:00 -07:00 committed by Adam Vandenberg
parent fa0e93e8c8
commit 724b224b8e
1 changed files with 16 additions and 0 deletions

16
Formula/pound.rb Normal file
View File

@ -0,0 +1,16 @@
require 'formula'
class Pound <Formula
url 'http://www.apsis.ch/pound/Pound-2.5.tgz'
homepage 'http://www.apsis.ch/pound'
md5 '8a39f5902094619afcda7d12d9d8342c'
depends_on 'pcre'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make" # Manual install to get around group issues
sbin.install ["pound", "poundctl"]
man8.install ["pound.8", "poundctl.8"]
end
end