63
Ubuntu Install Commands
64
-------------------------
66
The following commands work on Ubuntu to install the tools and libraries needed to build Drizzle:
70
sudo apt-get install python-software-properties
71
sudo add-apt-repository ppa:drizzle-developers/ppa
73
sudo apt-get install drizzle-dev
77
Debian Install Commands
78
-------------------------
80
Since apt-repository isn't in Debian, you can instead add the Maverick PPA to /etc/apt/sources.list as follows:
82
Add the following lines to /etc/apt/sources.list (make sure it's two
85
deb http://ppa.launchpad.net/drizzle-developers/ppa/ubuntu maverick main
86
deb-src http://ppa.launchpad.net/drizzle-developers/ppa/ubuntu maverick main
88
Add the signing key to your keyring: ::
90
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 06899068
96
apt-get update; apt-get install drizzle-dev
98
Note that these instructions are only for Debian Squeeze. For current
99
unstable/testing (aka Wheezy), the recommended source for Drizzle is the
100
main repository. In other words:
104
apt-get install drizzle-dev
106
or (if you want to install and not build drizzle):
110
apt-get install drizzle
53
114
Obtaining The Source
54
115
--------------------
55
116
The latest source release can always be found on our `LaunchPad site
56
<https://launchpad.net/drizzle>`_, alternatively the bzr source from our stable
117
<https://launchpad.net/drizzle>`_. Alternatively the bzr source from our stable
57
118
trunk can be obtained by doing:
59
120
.. code-block:: bash
61
122
bzr branch lp:drizzle
63
126
Compiling The Source
64
127
--------------------
65
128
Compiling is as simple as doing the following inside the source: