2008-03-20 02:05:27 +00:00
|
|
|
QUICK & EASY:
|
|
|
|
$ sh autogen.sh
|
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
$ ./src/conky # to run Conky
|
2008-03-20 02:58:17 +00:00
|
|
|
# make install
|
2005-08-22 07:43:01 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
First, read the README. This contains instructions specific to building conky
|
2008-12-09 06:14:46 +00:00
|
|
|
fresh from the git repo:
|
2005-08-22 07:43:01 +00:00
|
|
|
|
|
|
|
* Conky requires three "auto-tools", with at least the specific version numbers.
|
|
|
|
Make sure these are installed:
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2005-08-22 07:43:01 +00:00
|
|
|
aclocal-1.9
|
|
|
|
automake-1.9
|
|
|
|
autoconf-2.59
|
|
|
|
|
2008-12-09 06:14:46 +00:00
|
|
|
* In the directory where you cloned conky from git,
|
2008-02-20 20:30:45 +00:00
|
|
|
run "aclocal", "automake", and then "autoconf".
|
2005-08-22 07:43:01 +00:00
|
|
|
Make sure you run those commands with the latest versions...
|
2008-02-20 20:30:45 +00:00
|
|
|
it is very possible that older versions are installed, and
|
2005-08-22 07:43:01 +00:00
|
|
|
plain "automake" really means automake-1.4, not what we want,
|
|
|
|
but "automake-1.9" instead.
|
|
|
|
Use the "--version" option to check the program version, i.e.
|
2008-02-20 20:30:45 +00:00
|
|
|
"autoconf --version".
|
2008-03-20 02:05:27 +00:00
|
|
|
|
|
|
|
You can also try using the autogen.sh script, like so:
|
|
|
|
|
|
|
|
$ sh autogen.sh
|
2008-06-15 18:38:33 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
* After that, it's the familiar
|
2005-08-22 07:43:01 +00:00
|
|
|
|
2008-03-20 02:05:27 +00:00
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
# make install
|
2005-08-22 07:43:01 +00:00
|
|
|
|
2005-08-29 19:56:24 +00:00
|
|
|
You might have to do the last step as root.
|