Sorry, my fault. Let me explain then:
The site you sownloaded the source from probably said that you would have to type something in a terminal window like:
Code:
svn checkout [URL unfurl="true"]http://some.location/[/URL] somedirectory
This will get you a working copy of the sourcecode and will put it in a directory "somedirectory" (the last parameter in the statement above).
Go to this directory and see if there is a README file. However, for beginners, it may contain language that you don't understand.
So how do you compile a program? One textbook called it the "configure"-"make"-"make install" dance, but for beginners it is more of a "configure"-"google"-"give up" struggle.
First, Ubuntu does NOT come with all necessary tools. So installing the build-essential package is probably a good start.
Here's how compiling SHOULD work:
- go to the directory you downloaded.
- Read the README file if it exists.
- type: ./configure
This will show a lot of output. Check if it ends with an OK message or aborts because it misses a package.
If it misses a package, install it (using synaptic for instance) and repeat the ./configure step.
If it misses a package that you see as installed in your package manager, install the same package, but with a name ending in "-dev". Such packages contain development info that may be needed.
The configure step will "adapt" the source code for your specific machine.
- type: make
This will compile the program.
- type: sudo make install
This will ask for your password, as sudo will cause the "make install" command to be run as root (the administrator user). This command will install the program.
If the above does not work, try the Ubuntu forums and the internet search engines.
Good luck!
+++ Despite being wrong in every important aspect, that is a very good analogy +++
Hex (in Darwin's Watch)