79 lines
2.4 KiB
Ruby
79 lines
2.4 KiB
Ruby
class Pillow < Formula
|
|
desc "Friendly PIL fork (Python Imaging Library)"
|
|
homepage "https://python-pillow.org"
|
|
url "https://files.pythonhosted.org/packages/90/d4/a7c9b6c5d176654aa3dbccbfd0be4fd3a263355dc24122a5f1937bdc2689/Pillow-8.3.2.tar.gz"
|
|
sha256 "dde3f3ed8d00c72631bc19cbfff8ad3b6215062a5eed402381ad365f82f0c18c"
|
|
license "HPND"
|
|
head "https://github.com/python-pillow/Pillow.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "b36284f74b738ee245f6d53b89351104c002658d4de453c5b5ff4565f94c3209"
|
|
sha256 cellar: :any, big_sur: "28407094478b1c76dff2c1596448e305a6ad1286b64ed4f6b78847556aad1544"
|
|
sha256 cellar: :any, catalina: "ae88cbfc9badb00c656ab580737ab1337806d27dea2d709b8622b7f23be7f887"
|
|
sha256 cellar: :any, mojave: "bb4e553e8d23a45f669d92cc1d4ab12c67b699e741979981848d3e88e65c6dd9"
|
|
sha256 x86_64_linux: "bf825e8c5ceedce76d71ceddb457d949165b15e755ea04c948a5331c47c5dee9"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@3.8" => [:build, :test]
|
|
depends_on "python@3.9" => [:build, :test]
|
|
depends_on "jpeg"
|
|
depends_on "libimagequant"
|
|
depends_on "libraqm"
|
|
depends_on "libtiff"
|
|
depends_on "little-cms2"
|
|
depends_on "openjpeg"
|
|
depends_on "tcl-tk"
|
|
depends_on "webp"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
on_macos do
|
|
depends_on "python@3.7" => [:build, :test] unless Hardware::CPU.arm?
|
|
end
|
|
|
|
def pythons
|
|
deps.map(&:to_formula)
|
|
.select { |f| f.name.match?(/python@\d\.\d+/) }
|
|
.map(&:opt_bin)
|
|
.map { |bin| bin/"python3" }
|
|
end
|
|
|
|
def install
|
|
pre_args = %w[
|
|
--enable-tiff
|
|
--enable-freetype
|
|
--enable-lcms
|
|
--enable-webp
|
|
--enable-xcb
|
|
]
|
|
|
|
post_args = %W[
|
|
--prefix=#{prefix}
|
|
--install-scripts=#{bin}
|
|
--single-version-externally-managed
|
|
--record=installed.txt
|
|
]
|
|
|
|
ENV["MAX_CONCURRENCY"] = ENV.make_jobs.to_s
|
|
ENV.prepend "CPPFLAGS", "-I#{Formula["tcl-tk"].opt_include}"
|
|
ENV.prepend "LDFLAGS", "-L#{Formula["tcl-tk"].opt_lib}"
|
|
|
|
pythons.each do |python|
|
|
system python, "setup.py", "build_ext", *pre_args, "install", *post_args
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.py").write <<~EOS
|
|
from PIL import Image
|
|
im = Image.open("#{test_fixtures("test.jpg")}")
|
|
print(im.format, im.size, im.mode)
|
|
EOS
|
|
|
|
pythons.each do |python|
|
|
assert_equal "JPEG (1, 1) RGB", shell_output("#{python} test.py").chomp
|
|
end
|
|
end
|
|
end
|