From 1e6e80e172b5ec5597ea328cf61709d56b96ea6e Mon Sep 17 00:00:00 2001
From: Ondrej Certik <ondrej@certik.cz>
Date: Wed, 3 Dec 2008 00:59:58 +0100
Subject: [PATCH] README: detailed installation instructions added

The current readme contains instructions how to install debexpo using
setuptools. This patch adds instructions how to install it using the standard
Debian way by installing proper packages using apt-get.
---
 README.txt |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/README.txt b/README.txt
index d44a259..affbddf 100644
--- a/README.txt
+++ b/README.txt
@@ -4,6 +4,9 @@ you would include information such as the information below:
 Installation and Setup
 ======================
 
+setuptools way
+--------------
+
 Install ``debexpo`` using easy_install::
 
     easy_install debexpo
@@ -17,3 +20,18 @@ Tweak the config file as appropriate and then setup the application::
     paster setup-app config.ini
 
 Then you are ready to go.
+
+Debian way
+----------
+
+$ sudo apt-get install python-pylons python-babel
+$ mkdir -p $HOME/lib/lib/python2.5/site-packages
+$ export PYTHONPATH=$PYTHONPATH:$HOME/lib/lib/python2.5/site-packages
+$ python setup.py develop --prefix=~/lib -N
+$ paster make-config debexpo config.ini
+$ vim config.ini
+# fix at least the path "debexpo.repository = /tmp/debexpo_cache/"
+$ paster setup-app config.ini
+$ paster serve config.ini
+
+And go to http://127.0.0.1:5000 with your browser.
-- 
1.6.0.4.1060.g9433b

