blob: afe18e5c562f2a6b794db3c1259e593b3c9753fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Py3cairo < Formula
homepage 'http://cairographics.org/pycairo/'
url 'http://cairographics.org/releases/pycairo-1.10.0.tar.bz2'
sha1 'b4283aa1cc9aafd12fd72ad371303a486da1d014'
depends_on 'pkg-config' => :build
depends_on 'cairo'
depends_on :x11
depends_on :python3
def install
python3 do
ENV['PYTHON'] = "python3"
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf", "build"
system "./waf", "install"
end
end
test do
system "python3", "-c", "import cairo; print(cairo.version)"
end
end
|