Quote:
|
Originally Posted by rob.rice well one important thing was left out
always always right after untaring the archive read the README file |
I second this along with reading a file called "INSTALL" or "install.txt" which should have a step-by-step installation procedure for the app being built.
"make test", "make tests" or "make check" should also be used to make sure the app just built actually works. Some apps have test that come with the tarball and some don't.
So, when I install an app (like the Pidgin 2.1.1 upgrade I installed last night), I usually do this:
$ tar zxf [app-version-tarball].tar.gz
$ cd [app-version-dir]
$ more README
$ more INSTALL
$ ./configure [options, if necessary]
$ time make (so I can see long it took to build)
$ make test (or make tests or make check)
$ su
# make install
# exit
$ exit
This is on my 64-bit Ubuntu Feisty Fawn Linux system at home.
Peace...