103 lines
3.4 KiB
Ruby
103 lines
3.4 KiB
Ruby
class Mapnik < Formula
|
|
desc "Toolkit for developing mapping applications"
|
|
homepage "https://mapnik.org/"
|
|
url "https://github.com/mapnik/mapnik/releases/download/v3.1.0/mapnik-v3.1.0.tar.bz2"
|
|
sha256 "43d76182d2a975212b4ad11524c74e577576c11039fdab5286b828397d8e6261"
|
|
license "LGPL-2.1-or-later"
|
|
revision 5
|
|
head "https://github.com/mapnik/mapnik.git", branch: "master"
|
|
|
|
livecheck do
|
|
url :stable
|
|
strategy :github_latest
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "5821727e6bd5b456ad80ba0d1dd8feea6b42de7af942fccb0279f0a24e23c003"
|
|
sha256 cellar: :any, arm64_big_sur: "f969998d9b693da26699705c691d75b4cab8fa22b091d56a47e3ef92688fd8e0"
|
|
sha256 cellar: :any, monterey: "bd44d13a5e833ea36ae35e16bb56e9bf4e90134b5565fa1bd6adc13a1e1187cf"
|
|
sha256 cellar: :any, big_sur: "9234f5235b6586f049f18a8812f676262009811b0c32eb14171901dbd64ec4b5"
|
|
sha256 cellar: :any, catalina: "2840371dd8a84e29fe883e616c937962b32b1bf34066c13fa6ada13bd75cda3c"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "08332dc59b66ceb70a6ff51a7d72826a3a28b109ee9eea0d69513fb4b38a7924"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@3.9" => :build
|
|
depends_on "boost"
|
|
depends_on "cairo"
|
|
depends_on "freetype"
|
|
depends_on "gdal"
|
|
depends_on "harfbuzz"
|
|
depends_on "icu4c"
|
|
depends_on "jpeg"
|
|
depends_on "libpng"
|
|
depends_on "libtiff"
|
|
depends_on "postgresql"
|
|
depends_on "proj@7"
|
|
depends_on "webp"
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
ENV["PYTHON"] = Formula["python@3.9"].opt_bin/"python3"
|
|
|
|
# Work around "error: no member named 'signbit' in the global namespace"
|
|
# encountered when trying to detect boost regex in configure
|
|
ENV.delete("SDKROOT") if DevelopmentTools.clang_build_version >= 900
|
|
|
|
# Use Proj 6.0.0 compatibility headers
|
|
# https://github.com/mapnik/mapnik/issues/4036
|
|
ENV.append_to_cflags "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H"
|
|
|
|
boost = Formula["boost"].opt_prefix
|
|
freetype = Formula["freetype"].opt_prefix
|
|
harfbuzz = Formula["harfbuzz"].opt_prefix
|
|
icu = Formula["icu4c"].opt_prefix
|
|
jpeg = Formula["jpeg"].opt_prefix
|
|
libpng = Formula["libpng"].opt_prefix
|
|
libtiff = Formula["libtiff"].opt_prefix
|
|
proj = Formula["proj"].opt_prefix
|
|
webp = Formula["webp"].opt_prefix
|
|
|
|
args = %W[
|
|
CC=#{ENV.cc}
|
|
CXX=#{ENV.cxx}
|
|
PREFIX=#{prefix}
|
|
BOOST_INCLUDES=#{boost}/include
|
|
BOOST_LIBS=#{boost}/lib
|
|
CAIRO=True
|
|
CPP_TESTS=False
|
|
FREETYPE_CONFIG=#{freetype}/bin/freetype-config
|
|
GDAL_CONFIG=#{Formula["gdal"].opt_bin}/gdal-config
|
|
HB_INCLUDES=#{harfbuzz}/include
|
|
HB_LIBS=#{harfbuzz}/lib
|
|
ICU_INCLUDES=#{icu}/include
|
|
ICU_LIBS=#{icu}/lib
|
|
INPUT_PLUGINS=all
|
|
JPEG_INCLUDES=#{jpeg}/include
|
|
JPEG_LIBS=#{jpeg}/lib
|
|
NIK2IMG=False
|
|
PG_CONFIG=#{Formula["postgresql"].opt_bin}/pg_config
|
|
PNG_INCLUDES=#{libpng}/include
|
|
PNG_LIBS=#{libpng}/lib
|
|
PROJ_INCLUDES=#{proj}/include
|
|
PROJ_LIBS=#{proj}/lib
|
|
TIFF_INCLUDES=#{libtiff}/include
|
|
TIFF_LIBS=#{libtiff}/lib
|
|
WEBP_INCLUDES=#{webp}/include
|
|
WEBP_LIBS=#{webp}/lib
|
|
]
|
|
|
|
inreplace "Makefile", "PYTHON = python", "PYTHON = python3"
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/mapnik-config --prefix").chomp
|
|
assert_equal prefix.to_s, output
|
|
end
|
|
end
|