43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
class Pygobject3 < Formula
|
|
desc "GLib/GObject/GIO Python bindings for Python 3"
|
|
homepage "https://live.gnome.org/PyGObject"
|
|
url "https://download.gnome.org/sources/pygobject/3.16/pygobject-3.16.2.tar.xz"
|
|
sha256 "de620e00fe7ecb788aa2dc0d664e41f71b8e718e728168e8d982cf193a9e7e64"
|
|
|
|
bottle do
|
|
sha256 "75149598f8cf980feafe170e6ba007f6e75e774a2ed2a5539d5df70cdb458735" => :yosemite
|
|
sha256 "26d501f9063231c6c77bc72298f0cb8b05c22226cbdca2df55b84f5f1aaed02c" => :mavericks
|
|
sha256 "c3b842901e70cf25698ba203f2137f757d62cee06cfb90007cdf04265ac523ae" => :mountain_lion
|
|
end
|
|
|
|
option :universal
|
|
option "without-python", "Build without python2 support"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libffi" => :optional
|
|
depends_on "glib"
|
|
depends_on :python3 => :optional
|
|
depends_on "py2cairo" if build.with? "python"
|
|
depends_on "py3cairo" if build.with? "python3"
|
|
depends_on "gobject-introspection"
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
Language::Python.each_python(build) do |python, _version|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "PYTHON=#{python}"
|
|
system "make", "install"
|
|
system "make", "clean"
|
|
end
|
|
end
|
|
|
|
test do
|
|
Pathname("test.py").write <<-EOS.undent
|
|
import gi
|
|
assert("__init__" in gi.__file__)
|
|
EOS
|
|
Language::Python.each_python(build) do |python, _version|
|
|
system python, "test.py"
|
|
end
|
|
end
|
|
end
|