Update git instructions a bit
[mikachu/openbox.git] / README.GIT
1 To build Openbox from git you need:
2
3 A C Compiler (GNU GCC 3.2+ suggested)
4 GNU Gettext 0.14.4
5 GNU Autoconf 2.50+
6 GNU Automake 1.9+
7 GNU Libtool
8 Xlib library/headers (devel package)
9 Pkg-Config
10 Glib 2.0+ library/headers (devel package) (http://www.gtk.org)
11 libxml2 2.0+ library/headers (devel package)
12 Pango 1.10+ library/headers (devel package)
13 cvs
14
15 Optionally you may want:
16 X Cursor library/headers (devel package)
17 Startup Notification library/headers 0.8+ (devel package)
18
19 We recommend the latest versions of all these packages.
20
21 Do the following to build and install Openbox in git:
22
23 % ./bootstrap
24 % ./configure
25 % make
26 su to root and
27 % make install
28 or
29 % sudo make install
30
31 Don't try running it from the openbox/ directory without installing, it won't work.
32 It needs to be installed before it is run.
33
34 The installed binary is 'openbox'.
35
36
37
38 ----
39 In debian unstable, you want these packages:
40 gcc
41 gettext
42 automake1.9
43 autoconf
44 libtool
45 libpango1.0-dev
46 pkg-config
47 libglib2.0-dev
48 libxml2-dev
49 libxcursor-dev
50 libstartup-notification0-dev
51 xlibs-dev
52
53 tip: run "update-alternatives --config automake" and select automake1.9 before
54   running ./configure
55
56 ----