Do they temporary change the filesystem root, i.e. something like:
Code: Select all
chroot /tmp/modulename make install
Code: Select all
chroot /tmp/modulename make install
if it's a slackware package just:
Code: Select all
installpkg --root /tmp/modulename your-package.txz
or ROOT=/tmp/modulename installpkg your-package.txz
Code: Select all
make install DESTDIR=/tmp/modulename
or DESTDIR=/tmp/modulename ninja install
excellent.ncmprhnsbl wrote: ↑23 Sep 2024, 13:09if it's a slackware package just:in the case of a compiler it's usually DESTDIR=Code: Select all
installpkg --root /tmp/modulename your-package.txz or ROOT=/tmp/modulename installpkg your-package.txz
eg.exact syntax might depend on the compiler used.Code: Select all
make install DESTDIR=/tmp/modulename or DESTDIR=/tmp/modulename ninja install
here: http://www.porteus.org/faq/desktop-faq.html#twenty9 covers this to some extent, dead links notwithstanding. also mentions changes-time to gather files installed to the live system.