what's the quick and simple way to install software from src

Using applications, configuring, problems
Post Reply
Message
Author
fei243
Posts: 4
Joined: Thu 24 Nov 2005, 01:43

what's the quick and simple way to install software from src

#1 Post by fei243 »

when i can't find dotpup , i would like to make it from src.
but i wonder if there is a quick and simple way?
does the tiny gcc help?

User avatar
Pizzasgood
Posts: 6183
Joined: Wed 04 May 2005, 20:28
Location: Knoxville, TN, USA

#2 Post by Pizzasgood »

The quickest way I know of I to enter the directory with the source and run

Code: Select all

./configure
make
make install
But you have to have the development addon, and if you just run those without checking the readmes you might miss a critical configuration detail and have to recompile.
[size=75]Between depriving a man of one hour from his life and depriving him of his life there exists only a difference of degree. --Muad'Dib[/size]
[img]http://www.browserloadofcoolness.com/sig.png[/img]

User avatar
rarsa
Posts: 3053
Joined: Sun 29 May 2005, 20:30
Location: Kitchener, Ontario, Canada
Contact:

#3 Post by rarsa »

Here are the detailed instructions:
http://puppylinux.org/wikka/Compiling

Don't be daunted by it. We tried to write the instructions very detailed.

It actually boils down to:

Download usr_devx.sfs (It contains all the compile tools required)
Extract source
Follow INSTALL or README instructions on the source. Usually.
./configure
make
make install

That's it for most packages.

Post Reply