summaryrefslogtreecommitdiff
path: root/docs/devguide/dev_environ.rst
blob: 9ca37dd937f6b28fa4590f08935a21aa03d65700 (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
39
40
41
42
43
44
45
46
.. include:: ../icons.rst

==================================
Creating a Development Environment
==================================

This describes how to work on PyGObject itself. Please follow the instructions
on ":ref:`gettingstarted`" first, as they are a pre-requirement.


|ubuntu-logo| Ubuntu / |debian-logo| Debian
-------------------------------------------

.. code:: console

    sudo apt build-dep pygobject
    sudo apt install autoconf-archive
    git clone https://gitlab.gnome.org/GNOME/pygobject.git
    cd pygobject
    ./autogen.sh
    make
    make check


|windows-logo| Windows
----------------------

.. code:: console

    pacman -S --needed --noconfirm base-devel mingw-w64-i686-toolchain git \
        mingw-w64-i686-python3 mingw-w64-i686-python3-cairo \
        mingw-w64-i686-gobject-introspection mingw-w64-i686-gtk3 \
        mingw-w64-i686-libffi autoconf-archive
    git clone https://gitlab.gnome.org/GNOME/pygobject.git
    cd pygobject
    ./autogen.sh
    make
    make check


|macosx-logo| macOS
-------------------

.. code:: console

    # TODO