aboutsummaryrefslogtreecommitdiffstats
path: root/HACKING
blob: ce3bfbd42dea24a73e603aa15fa6034b18a61f02 (plain) (blame)
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
47
48
49
50

Build from repository
---------------------
 $ ./bootstrap
 $ ./configure

The bootstrap script will use autotools to set up the build environment
and create the `configure` script.

Use `./configure --help' for options. Use `--prefix' to make an install in
your home directory. This is necessary to test python scripts. The systemd
user unit directory should be set to avoid writing to the system location.

Systemd will look for the unit files in `~/.config/systemd/user` so this
directory can be used as a target if the unit files will be used. Otherwise
the location can be set to `no` to disable the systemd files.

Example:

 $ ./configure --prefix=$HOME/redshift/root \
   --with-systemduserunitdir=$HOME/.config/systemd/user

Now, build the files:

 $ make

The main redshift program can be run at this point. To install to the
prefix directory run:

 $ make install

You can now run the python scripts. Example:

 $ PYTHONHOME=$HOME/redshift/root/lib/python2.7/site-packages \
    $HOME/redshift/root/bin/redshift-gtk


Depenencies
-----------

* autotools, gettext
* libxcb, libxcb-randr (Optional, for RandR support)
* libX11, libXxf86vm (Optional, for VidMode support)
* geoclue (Optional, for geoclue support)


Notes
-----
- verbose flag is (currently) only held in redshift.c; thus, write all
  verbose messages there.