2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 04:57:52 +00:00
kea/doc/sphinx/make-install.sh.in
2025-02-21 18:42:49 +02:00

16 lines
437 B
Bash
Executable File

#!/bin/sh
set -v
set -e
mkdir -p @docdir@
if test -d "@abs_sphinxbuilddir@/html" ; then
cp -r @abs_sphinxbuilddir@/html @docdir@
if test "@HAVE_PDFLATEX@" != "no" ; then
@INSTALL@ -c -m 644 @abs_sphinxbuilddir@/latex/kea-arm.pdf @docdir@
@INSTALL@ -c -m 644 @abs_sphinxbuilddir@/latex/kea-messages.pdf @docdir@
fi
mkdir -p @mandir8@
@INSTALL@ -c -m 644 @abs_sphinxbuilddir@/man/*.8 @mandir8@
fi