2011-12-19 07:53:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Py2cairo < Formula
|
|
|
|
homepage 'http://cairographics.org/pycairo/'
|
2012-03-12 16:48:49 +00:00
|
|
|
url 'http://cairographics.org/releases/py2cairo-1.10.0.tar.bz2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '2efa8dfafbd6b8e492adaab07231556fec52d6eb'
|
2011-12-19 07:53:51 +00:00
|
|
|
|
2013-02-11 01:40:48 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2011-12-19 07:53:51 +00:00
|
|
|
depends_on 'cairo'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2014-01-06 12:14:10 +00:00
|
|
|
depends_on :python
|
2011-12-19 07:53:51 +00:00
|
|
|
|
2012-08-12 17:58:58 +00:00
|
|
|
option :universal
|
|
|
|
|
2012-06-20 18:39:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2336
|
|
|
|
cause "The build script will set -march=native which llvm can't accept"
|
|
|
|
end
|
|
|
|
|
2011-12-19 07:53:51 +00:00
|
|
|
def install
|
2014-03-29 00:15:44 +00:00
|
|
|
ENV.refurbish_args
|
|
|
|
|
2011-12-19 07:53:51 +00:00
|
|
|
# Python extensions default to universal but cairo may not be universal
|
2013-08-02 02:46:56 +00:00
|
|
|
ENV['ARCHFLAGS'] = "-arch #{MacOS.preferred_arch}" unless build.universal?
|
2012-03-12 16:48:49 +00:00
|
|
|
|
2014-01-04 13:13:16 +00:00
|
|
|
# waf miscompiles py2cairo on >= lion with HB python, linking the wrong
|
|
|
|
# Python Library. So add a LINKFLAG that sets the path.
|
|
|
|
# https://github.com/Homebrew/homebrew/issues/12893
|
|
|
|
# https://github.com/Homebrew/homebrew/issues/14781
|
|
|
|
# https://bugs.freedesktop.org/show_bug.cgi?id=51544
|
2014-01-06 10:59:10 +00:00
|
|
|
ENV['LINKFLAGS'] = "-L#{%x(python-config --prefix).chomp}/lib/python2.7/config"
|
2014-01-04 13:13:16 +00:00
|
|
|
system "./waf", "configure", "--prefix=#{prefix}", "--nopyc", "--nopyo"
|
|
|
|
system "./waf", "install"
|
2011-12-19 07:53:51 +00:00
|
|
|
end
|
|
|
|
end
|