Go to file
2019-10-06 03:37:38 +02:00
data Update the helper scripts from upstream 2019-10-06 03:37:38 +02:00
doc Update the helper scripts from upstream 2019-10-06 03:37:38 +02:00
include Update the copyright notice 2018-04-21 22:29:20 +02:00
src Also ship mimehandler.h 2018-12-29 02:11:09 +01:00
tests Update the helper scripts from upstream 2019-10-06 03:37:38 +02:00
tools Update the helper scripts from upstream 2019-10-06 03:37:38 +02:00
.gitignore Add a couple .gitignore files 2015-04-05 19:44:53 +02:00
COPYING Re-license as 2-clause BSD 2015-05-25 13:33:03 +02:00
project.conf About to release libDesktop 0.3.1 2018-12-29 02:11:33 +01:00
README.md Also ship a README.md file 2018-04-21 22:53:30 +02:00

DeforaOS libDesktop

About libDesktop

libDesktop is a collection of compatibility and portability routines to help with the development of desktop applications using the Gtk+ toolkit.

Compiling libDesktop

With GCC, this should be enough:

$ make

To install libDesktop in a dedicated directory, like /path/to/libDesktop:

$ make PREFIX="/path/to/libDesktop" install

Using Gtk+ version 3

libDesktop defaults to the version 2 of the Gtk+ toolkit. Alternatively, it is possible to re-generate the Makefiles for the Gtk+ 3 toolkit with configure(1) from the DeforaOS configure project, found at https://www.defora.org/os/project/16/configure. The procedure is then as follows:

$ $EDITOR data/libDesktop.pc.in
[replace "gtk+-2.0" with "gtk+-3.0"]
$ $EDITOR src/project.conf tests/project.conf tools/project.conf
[comment lines in and out as described]
$ make distclean
$ configure
$ make

Please refer to the documentation of DeforaOS configure for further instructions.