This might be my system being set up weird but:
When sudo apt install -ing the .deb, I get the ominous-sounding N: Download is performed unsandboxed as root, as file '/home/myuser/bin/prelockd/deb/package.deb' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied)
I don't know how much of a problem this is, but a bit of web searching suggests mv ./deb/package.deb /tmp && sudo apt install /tmp/package.deb which removes the warning. (there may well be a cleaner and/or safer way to do it)
This might be my system being set up weird but:
When
sudo apt install-ing the .deb, I get the ominous-soundingN: Download is performed unsandboxed as root, as file '/home/myuser/bin/prelockd/deb/package.deb' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied)I don't know how much of a problem this is, but a bit of web searching suggests
mv ./deb/package.deb /tmp && sudo apt install /tmp/package.debwhich removes the warning. (there may well be a cleaner and/or safer way to do it)