-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathINSTALL
38 lines (22 loc) · 921 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
Installation instructions
--------------------------
1. Dependencies
----------------
Automatic makes use of the libcurl, libxml2 and libpcre libraries, so make sure those are installed.
You'll also need automake to run autogen.sh - on Debian-derived distros, `apt-get install automake`.
2. Configuration
----------------
First autogenerate the configuration files by typing
./autogen.sh
then configure the tool by typing
./configure
This should work on most systems and prepare the package for compilation. You may check out further
options by typing ./configure --help
After configure is done, you compile via
make
If everything went well, install Automatic by typing
make install
That's it! You're done!
Start Automatic with the command 'automatic'. You may specify a different location for the configuration file
(the default one sits at /etc/automatic.conf)
Have fun!