You are not logged in.
Pages: 1
Hi,
I tried to find a manual on building real world applications for Linux, without much success. I mean, how to go about building applications from somebody else's sources? Of course, there's usually a developer's step-by-step guide, but the lack of general understanding is really frustrating...
Any links/suggestions? I mean, technology outside ABS.
Offline
Typically, open source C and C++ apps, as well as several others use autoconf; look for tutorials on that suite of tools. Look for some tutorials on that.
Also, take a look at the build() function of any PKGBUILD. This is the shell commands to build that package. You could run them on your shell, one by one, and the program would be compiled and installed (but pacman wouldn't know about it, so that sucks). Read the man page of each command you come across. Some important ones are gcc, g++ (compilers) and make (which is a way to instruct what compiler to run and how). ./configure is a script generated by autoconf, mentioned above.
Dusty
Offline
Pages: 1