lilo: make sure scripts and manpages are installed properly

Previously, manpages and subset of binaries were installed into
$out/usr.
This commit is contained in:
Dmitry Bogatov 2021-11-24 21:41:58 -04:00 committed by Bjørn Forsman
parent 44499330ff
commit 810515f876

View file

@ -8,7 +8,12 @@ stdenv.mkDerivation rec {
hash = "sha256-4VjxneRWDJNevgUHwht5v/F2GLkjDYB2/oxf/5/b1bE=";
};
nativeBuildInputs = [ dev86 sharutils ];
DESTDIR = placeholder "out";
makeFlags = [
"DESTDIR=${placeholder "out"}"
"SBIN_DIR=/bin"
"USRSBIN_DIR=/bin"
"MAN_DIR=/share/man"
];
meta = with lib; {
homepage = "https://www.joonet.de/lilo/";