root/tools/bundleman/trunk/INSTALL.txt

Revision 50852, 1.7 kB (checked in by madarche, 2 years ago)

Typo + better reST display in VIM.

  • Property svn:keywords set to Id
Line 
1 =================
2 INSTALL BundleMan
3 =================
4 :author: Benoit Delbosc
5
6 :address: bdelbosc _at_ nuxeo.com
7
8 :revision: $Id$
9
10 :abstract: This document describes how to install the BundleMan_ tool.
11
12 .. sectnum::  :depth: 1
13 .. contents:: Table of Contents
14
15
16 OS support
17 ----------
18
19 Should work on an any unices.
20
21
22 Requirements
23 ------------
24
25 * python 2.4 (python 2.3 to be tested)
26
27 * subversion >= 1.2.0 (requires ``--ignore-externals`` and ``info`` on URL...)
28
29 * rm, grep, tar, sort, find, xargs, md5sum
30
31
32 Install
33 -------
34
35 * Get the latest package from the Python `Cheese Shop`_
36
37 * Extract the archive::
38
39     tar xzvf bundleman-X.Y.Z.tar.gz
40     cd bundleman
41
42 * Install bundleman either with::
43
44     sudo make install
45
46   or using the pythonic way::
47
48     python setup.py build
49     sudo python setup.py install
50
51 * You should run the unit tests to check that bundleman is working on your
52   system with::
53
54     python setup.py test
55
56   It takes ~ 2 minutes.
57
58 * Note that you can also use EasyInstall_::
59
60     sudo easy_install bundleman
61
62
63 Checkout SVN version
64 --------------------
65
66 If you want to try the latest unstable sources from SVN ::
67
68     svn co https://svn.nuxeo.org/pub/tools/bundleman/trunk bundleman
69     cd bundleman
70     sudo make install
71
72 Uninstall
73 ---------
74
75 From the archive extraction::
76
77     sudo make uninstall
78
79
80
81 --------------------------
82
83 See README_ for more information about BundleMan_.
84
85 See CHANGES_ for information on BundleMan_ packages.
86
87 .. _BundleMan: http://public.dev.nuxeo.com/~ben/bundleman/
88 .. _`Cheese Shop`: http://www.python.org/pypi/bundleman
89 .. _README: README.html
90 .. _CHANGES: CHANGES.html
91 .. _EasyInstall: http://peak.telecommunity.com/DevCenter/EasyInstall
92
93
94 .. Local Variables:
95 .. mode: rst
96 .. End:
97 .. vim: set filetype=rst:
Note: See TracBrowser for help on using the browser.