* Build a PDF version of the manual in the tarball job (it's not

included in the tarball though).
This commit is contained in:
Eelco Dolstra 2009-05-07 13:12:46 +00:00
parent f751c2966b
commit 83bd320b39
1 changed files with 5 additions and 1 deletions

View File

@ -18,7 +18,7 @@ let
src = nix;
inherit officialRelease;
buildInputs = [curl bison flex2533 perl libxml2 libxslt w3m bzip2 jing_tools];
buildInputs = [curl bison flex2533 perl libxml2 libxslt w3m bzip2 jing_tools tetex dblatex];
configureFlags = ''
--with-docbook-rng=${docbook5}/xml/rng/docbook
@ -53,6 +53,10 @@ let
make -C doc/manual install prefix=$out
echo "doc manual $out/share/doc/nix/manual" >> $out/nix-support/hydra-build-products
echo "doc release-notes $out/share/doc/nix/release-notes" >> $out/nix-support/hydra-build-products
make -C doc/manual manual.pdf prefix=$out
cp doc/manual/manual.pdf $out/manual.pdf
echo "doc-pdf manual $out/manual.pdf" >> $out/nix-support/hydra-build-products
'';
};