Merge pull request #207948 from viraptor/cleanup-nanosaur-build
nanosaur,nanosaur2,otto-matic: cleanup cmake build
This commit is contained in:
commit
619b9dd1cd
3 changed files with 15 additions and 32 deletions
|
@ -20,21 +20,12 @@ stdenv.mkDerivation rec {
|
||||||
SDL2
|
SDL2
|
||||||
];
|
];
|
||||||
|
|
||||||
configurePhase = ''
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
|
||||||
runHook preConfigure
|
|
||||||
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
|
|
||||||
runHook postConfigure
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
runHook preBuild
|
|
||||||
cmake --build build
|
|
||||||
runHook postBuild
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
mv build $out
|
mkdir -p "$out/bin"
|
||||||
|
mv Nanosaur Data ReadMe.txt "$out/"
|
||||||
makeWrapper $out/Nanosaur $out/bin/Nanosaur --chdir "$out"
|
makeWrapper $out/Nanosaur $out/bin/Nanosaur --chdir "$out"
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -20,21 +20,12 @@ stdenv.mkDerivation rec {
|
||||||
SDL2
|
SDL2
|
||||||
];
|
];
|
||||||
|
|
||||||
configurePhase = ''
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
|
||||||
runHook preConfigure
|
|
||||||
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
|
|
||||||
runHook postConfigure
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
runHook preBuild
|
|
||||||
cmake --build build
|
|
||||||
runHook postBuild
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
mv build $out
|
mkdir -p "$out/bin"
|
||||||
|
mv Nanosaur2 Data ReadMe.txt "$out/"
|
||||||
makeWrapper $out/Nanosaur2 $out/bin/Nanosaur2 --chdir "$out"
|
makeWrapper $out/Nanosaur2 $out/bin/Nanosaur2 --chdir "$out"
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -12,22 +12,23 @@ stdenv.mkDerivation rec {
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
SDL2
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
SDL2
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/share/OttoMatic
|
mkdir -p "$out/bin"
|
||||||
mv Data $out/share/OttoMatic
|
mv OttoMatic Data ReadMe.txt "$out/"
|
||||||
install -Dm755 {.,$out/bin}/OttoMatic
|
makeWrapper $out/OttoMatic $out/bin/OttoMatic --chdir "$out"
|
||||||
wrapProgram $out/bin/OttoMatic --chdir "$out/share/OttoMatic"
|
|
||||||
|
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue