a7137bb818
Closes Homebrew/homebrew#14816. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
26 lines
785 B
Ruby
26 lines
785 B
Ruby
require 'formula'
|
|
|
|
class Pygobject < Formula
|
|
homepage 'http://live.gnome.org/PyGObject'
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.6.tar.bz2'
|
|
sha1 '4eda7d2b97f495a2ad7d4cdc234d08ca5408d9d5'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'gobject-introspection'
|
|
depends_on 'glib'
|
|
|
|
option :universal
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=668522
|
|
def patches
|
|
"http://git.gnome.org/browse/pygobject/patch/gio/gio-types.defs?id=42d01f060c5d764baa881d13c103d68897163a49"
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-introspection"
|
|
system "make install"
|
|
end
|
|
end
|