88779ade49
Closes Homebrew/homebrew#14653.
42 lines
1 KiB
Ruby
42 lines
1 KiB
Ruby
require 'formula'
|
|
|
|
class Tinyproxy < Formula
|
|
homepage 'https://www.banu.com/tinyproxy/'
|
|
url 'https://www.banu.com/pub/tinyproxy/1.8/tinyproxy-1.8.3.tar.bz2'
|
|
sha1 '2538fbd190d3dc357a2e7c2a07ea0fbefb768a13'
|
|
|
|
skip_clean 'var/run'
|
|
|
|
option 'reverse', "Enable reverse proxying"
|
|
|
|
depends_on 'asciidoc' => :build
|
|
|
|
# Fix linking error, via MacPorts
|
|
# See: https://trac.macports.org/ticket/27762
|
|
def patches
|
|
{:p0 => [
|
|
"https://trac.macports.org/export/83413/trunk/dports/net/tinyproxy/files/patch-configure.diff"
|
|
]}
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--disable-regexcheck
|
|
]
|
|
|
|
args << '--enable-reverse' if build.include? 'reverse'
|
|
|
|
system "./configure", *args
|
|
|
|
# Fix broken XML lint
|
|
# See: http://www.freebsd.org/cgi/query-pr.cgi?pr=154624
|
|
inreplace ["docs/man5/Makefile", "docs/man8/Makefile"] do |s|
|
|
s.gsub! "-f manpage", "-f manpage \\\n -L"
|
|
end
|
|
|
|
system "make install"
|
|
end
|
|
end
|