forked from dannyedel/dspdfviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
41 lines (24 loc) · 970 Bytes
/
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
How to install the dspdfviewer
1. Debian-based distributions
=============================
1.1 Install ready-to-run binaries
---------------------------------
If you use debian wheezy, you might want to use my public repository under
http://danny-edel.de/deb
Instructions on how to use it are inside.
1.2 Compile it yourself
-----------------------
You're in luck. Its really easy. First, you want to install the "devscripts"
package for debuild and debi:
su -c "apt-get install devscripts"
To build the software - assuming you're in the base directory - just
execute the following commands:
debuild -tc # If it complains about missing build-deps, use apt-get install...
su -c debi # Ubuntu guys try "sudo debi" instead
2. Other distributions
======================
Since I use cmake as a build system, the following sequence should compile it.
mkdir /tmp/builddir
cd /tmp/builddir
cmake /path/to/the/downloaded/dspdfviewer-source
make && make install