rubber: put man and info pages in the right directory

gstqt5
Peter Hoeg 2020-10-27 18:30:53 +08:00
parent 48148913b6
commit 02de51f120
1 changed files with 9 additions and 9 deletions

View File

@ -9,18 +9,18 @@ python3Packages.buildPythonApplication rec {
sha256 = "178dmrp0mza5gqjiqgk6dqs0c10s0c517pk6k9pjbam86vf47a1p";
};
nativeBuildInputs = [ texinfo ];
# I couldn't figure out how to pass the proper parameter to disable pdf generation, so we
# use sed to change the default
preBuild = ''
sed -i -r 's/pdf\s+= True/pdf = False/g' setup.py
# I'm sure there is a better way to pass these parameters to the build script...
postPatch = ''
substituteInPlace setup.py \
--replace 'pdf = True' 'pdf = False' \
--replace '$base/man' 'share/man' \
--replace '$base/info' 'share/info' \
--replace '$base/share' 'share'
'';
# the check scripts forces python2. If we need to use python3 at some point, we should use
# the correct python
nativeBuildInputs = [ texinfo ];
checkPhase = ''
sed -i 's|python=python3|python=${python3Packages.python.interpreter}|' tests/run.sh
cd tests && ${stdenv.shell} run.sh
'';