znc: add python3 modpython support

This updates the ZNC formula to support building modpython, allowing for
Python ZNC modules to be used at runtime.
This commit is contained in:
Daniel Pittman 2017-08-22 12:38:48 -04:00 committed by FX Coudert
parent 86ab7d5902
commit 8889087e38

View file

@ -20,12 +20,14 @@ class Znc < Formula
option "with-debug", "Compile ZNC with debug support"
option "with-icu4c", "Build with icu4c for charset support"
option "with-python3", "Build with mod_python support, allowing Python ZNC modules"
deprecated_option "enable-debug" => "with-debug"
depends_on "pkg-config" => :build
depends_on "openssl"
depends_on "icu4c" => :optional
depends_on "python3" => :optional
needs :cxx11
@ -39,6 +41,7 @@ class Znc < Formula
args = ["--prefix=#{prefix}"]
args << "--enable-debug" if build.with? "debug"
args << "--enable-python" if build.with? "python3"
system "./autogen.sh" if build.head?
system "./configure", *args