summaryrefslogtreecommitdiff
path: root/INSTALL
blob: a11bc04eb9cba76a20d7d1bad5be13f7d0189af4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
Install Procedure
-----------------
Waf
---
$ ./waf --help     # shows available waf options
$ ./waf configure  # use --prefix and --libdir if necessary
                   # --prefix=/usr --libdir=/usr/lib64  for Fedora 64-bit
$ ./waf build
$ ./waf install

Use
$ python2 ./waf ...
if you have python2 and python3 installed, and the default is python 3.


Unsupported alternative install methods
---------------------------------------
GNU Autotools
-------------
Using the same install method of install as cairo - GNU autotools.

$ python -c "import sys; print sys.prefix"
  # make a note of the python prefix
$ ./configure --prefix=<python_prefix>
$ make
$ make install       # may require superuser access

To build from git, use this line instead of the configure line above:
$ ./autogen.sh --prefix=<python_prefix>

If you're installing to another prefix than the one where Python is installed
Python will not be able to find the cairo module until you add
$prefix/lib/pythonX.Y/site-packages to the PYTHONPATH variable.


Testing
-------
See test/README