Debian / Ubuntu Repository
To enable it:
$ sudo gedit /etc/apt/sources.list
and add this line:
deb http://d-apt.googlecode.com/files /
then update local info and import d-apt public key:
$ sudo apt-get update && sudo apt-get --yes --allow-unauthenticated install d-apt-keyring && sudo apt-get update
Now you can install "GtkD":
$ sudo apt-get install libgtkd-dev libgtkd-doc
More info: APT Repository for D
Packages
Library:
libgtkd-dev_1.5.1+svn949-0_i386.deb (10.2 MB)
libgtkd-dev_1.5.1+svn949-0_amd64.deb (10.2 MB)
Documentation:
libgtkd-doc_1.5.1+svn949-0_all.deb (4.9 MB)
The Library is compiled with dmd 2.059, you can get it here:
- dmd_2.059-0_i386.deb (8.7 MB)
- dmd_2.059-0_amd64.deb (8.8 MB)
Compiling GtkD Applications
To compile gtkd applications, use the "pkg-config" command:
$ dmd `pkg-config --cflags --libs gtkd` my_gtkd_app.d
