Normally, the project will have a website with instructions for how to build and install it. Google for that first.
For the most part you will do either:
For the most part you will do either:
- Download a tarball (tar.gz or tar.bz2 file), which is a release of a specific version of the source code
- Extract the tarball with a command like
tar zxvf myapp.tar.gz
for a gzipped tarball ortar jxvf myapp.tar.bz2
for a bzipped tarball - cd into the directory created above
- run
./configure && make && sudo make install
- Use git or svn or whatever to pull the latest source code from their official source repository
- cd into the directory created above
- run
./autogen.sh && make && sudo make install
No comments:
Post a Comment