tinyproxy: add url filtering option (#5887)
This commit is contained in:
parent
0eb2ec5f6d
commit
9cb6dee8ef
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue