Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to New approaches to Linux package management
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
Re:Source-based is univeral, nothing else really i
Posted by: Anonymous Coward on November 11, 2005 04:34 PM>
> tar xzvf mypackage-3.1.tar.gz
> cd mypackage-3.1.tar.gz<nobr> <wbr></nobr>./configure make
> sudo make install
> --prefix=/usr/local/packages/mypackage-3.1
> cd<nobr> <wbr></nobr>/usr/local/package
> sudo xstow mypackage-3.1
>
> and to uninstall something:
> xstow -d mypackage-3.1
> rm -rf<nobr> <wbr></nobr>/usr/local/packages/mypackage-3.1
or:
$ sourceinstall mypackage-3.1.tar.gz
and to uninstall something:
$ sourceinstall --remove mypackage-3.1
#