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