45 lines
1.5 KiB
Ruby
45 lines
1.5 KiB
Ruby
class Pygobject3 < Formula
|
|
desc "GNOME Python bindings (based on GObject Introspection)"
|
|
homepage "https://live.gnome.org/PyGObject"
|
|
url "https://download.gnome.org/sources/pygobject/3.20/pygobject-3.20.1.tar.xz"
|
|
sha256 "3d261005d6fed6a92ac4c25f283792552f7dad865d1b7e0c03c2b84c04dbd745"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "548357d70cfa8b7392e118d447cda25a89e9aa4ba49ee6f7b8f60fb119b84a3d" => :el_capitan
|
|
sha256 "ac9f149c4d46f9530123fad0132ac7e1edf146d1d4806ba8a7673753f846ebc5" => :yosemite
|
|
sha256 "84ef031a8bfb645bc51f4bc327695271121f382981e88dd90f33d8e8ed56ef61" => :mavericks
|
|
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
|