2015-03-23 01:09:34 +00:00
|
|
|
class Py3cairo < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Python 3 bindings for the Cairo graphics library"
|
2015-03-23 01:09:34 +00:00
|
|
|
homepage "http://cairographics.org/pycairo/"
|
|
|
|
url "http://cairographics.org/releases/pycairo-1.10.0.tar.bz2"
|
|
|
|
sha256 "9aa4078e7eb5be583aeabbe8d87172797717f95e8c4338f0d4a17b683a7253be"
|
|
|
|
|
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "cairo"
|
|
|
|
depends_on :python3
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV["PYTHON"] = "python3"
|
|
|
|
system "./waf", "configure", "--prefix=#{prefix}"
|
|
|
|
system "./waf", "build"
|
|
|
|
system "./waf", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "python3", "-c", "import cairo; print(cairo.version)"
|
|
|
|
end
|
|
|
|
end
|