tinyproxy: add url filtering option (#5887)

This commit is contained in:
Jason Freidman 2016-10-14 08:46:11 -07:00 committed by Mike McQuaid
parent 0eb2ec5f6d
commit 9cb6dee8ef

View file

@ -17,6 +17,7 @@ class Tinyproxy < Formula
option "with-reverse", "Enable reverse proxying"
option "with-transparent", "Enable transparent proxying"
option "with-filter", "Enable url filtering"
deprecated_option "reverse" => "with-reverse"
@ -39,6 +40,7 @@ class Tinyproxy < Formula
args << "--enable-reverse" if build.with? "reverse"
args << "--enable-transparent" if build.with? "transparent"
args << "--enable-filter" if build.with? "filter"
system "./configure", *args