polipo: remove options

This commit is contained in:
FX Coudert 2018-11-01 22:41:03 +01:00
parent acbab6f64c
commit 77c6e9c17b

View file

@ -15,18 +15,18 @@ class Polipo < Formula
sha256 "74930c6406c860315088f3bde52332fb3708a60f5aabeeff1497a3cbbdf10a73" => :mavericks sha256 "74930c6406c860315088f3bde52332fb3708a60f5aabeeff1497a3cbbdf10a73" => :mavericks
end end
option "with-large-chunks", "Set chunk size to 16k (more RAM, but more performance)"
def install def install
cache_root = (var + "cache/polipo") cache_root = (var + "cache/polipo")
cache_root.mkpath cache_root.mkpath
args = %W[PREFIX=#{prefix}
args = %W[
PREFIX=#{prefix}
LOCAL_ROOT=#{pkgshare}/www LOCAL_ROOT=#{pkgshare}/www
DISK_CACHE_ROOT=#{cache_root} DISK_CACHE_ROOT=#{cache_root}
MANDIR=#{man} MANDIR=#{man}
INFODIR=#{info} INFODIR=#{info}
PLATFORM_DEFINES=-DHAVE_IPv6] PLATFORM_DEFINES=-DHAVE_IPv6
args << 'EXTRA_DEFINES="-DCHUNK_SIZE=16384"' if build.with? "large-chunks" ]
system "make", "all", *args system "make", "all", *args
system "make", "install", *args system "make", "install", *args