-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
47 lines (28 loc) · 874 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
40
41
42
43
44
45
46
47
REQUIREMENTS
you need:
- C++ compiler
- make
- common system libraries and included files
- installed libdar library and header files (version >= 2.8.0)
INSTALLATION
extract source package and run
./configure
to install webdar type (as root):
make install
(or make install-strip for a smaller binary)
It will be installed under /usr/local
you can specify another place using the the PREFIX
variable:
./configure --prefix=/usr
Last if you want to build a distro package, you can use
the DESTDIR variable in addition, and no more need root
priviledge:
make DESTDIR=/tmp install
If you want to uninstall webdar you can use the
'uninstall' target, DESTDIR and/or --prefix should
be the same as the one used at installation step:
make uninstall
or
make DESTDIR=/tmp --prefix=/usr uninstall
What's next? Read the man page:
man webdar