Patterns in static

Apophenia

Not root?

If you aren't root, then you will need to create a subdirectory in your home directory in which to install packages. The GSL and SQLite installations will go like this. The key is the –prefix addition to the ./configure command.

export MY_LIBS = src #choose a directory name to be created in your home directory.
tar xvzf pkg.tgz #change pkg.tgz to the appropriate name
cd package_dir #same here.
mkdir $HOME/$MY_LIBS
./configure --prefix $HOME/$MY_LIBS
make
make install #Now you don't have to be root.
echo "export LD_LIBRARY_PATH=$HOME/$MY_LIBS:\$LD_LIBRARY_PATH" >> ~/.bashrc

Autogenerated by doxygen on Wed Oct 15 2014 (Debian 0.999b+ds3-2).