forked from dmgerman/xournal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
50 lines (36 loc) · 1.13 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Xournal Installation instructions
=================================
(see also BUILD-NOTES.win32 for Win32 packaging/installation instructions)
Dependencies:
-------------
Required packages and libraries:
* TO COMPILE xournal:
- autoconf, automake (to generate the makefiles)
- gtk+ 2.10 or later development packages
(package gtk2-devel and its dependencies)
- libgnomecanvas 2.4 or later development packages
(package libgnomecanvas-devel and its dependencies)
- poppler-glib 0.5.4 or later development packages
(package poppler-glib-devel and dependencies)
* TO RUN xournal:
- gtk+ 2.10 or later
(package gtk2 and dependencies)
- libgnomecanvas 2.4 or later
(package libgnomecanvas and dependencies)
- poppler-glib 0.5.4 or later
(package poppler-glib and dependencies)
* OTHER:
- ghostscript (optional: used to import PS/PDF files as bitmap backgrounds)
Compilation and installation:
-----------------------------
Installation in /usr/local:
./autogen.sh
make
(as root) make install
(as root) make desktop-install
Installation in $HOME:
./autogen.sh
./configure --prefix=$HOME
make
make install
make home-desktop-install