mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
Docs: Simplifies build script.
This commit is contained in:
parent
77576dbbf1
commit
585c3e4abb
@ -66,23 +66,30 @@ echo -e "\n\e[7m LazControls package \e[0m";
|
||||
# imports done manually to set the correct prefix for the output format
|
||||
# output to current directory
|
||||
echo "Generating CHM help..."
|
||||
$fpdocpgm --project=lazcontrols-project.xml --format=chm --footer=@lazcontrols-chm-footer.xml --fallback-seealso-links 2>&1 | tee ./build_chm.log
|
||||
#$fpdocpgm --project=lazcontrols-project.xml --format=chm --footer=@lazcontrols-chm-footer.xml --import=$chmdir/rtl.xct,ms-its:rtl.chm::/ --import=$chmdir/fcl.xct,ms-its:fcl.chm::/ --import=$chmdir/lcl.xct,ms-its:lcl.chm::/ --import=$chmdir/lazutils.xct,ms-its:lazutils.chm::/ 2>&1 | tee ./build_chm.log
|
||||
$fpdocpgm --project=lazcontrols-project.xml --format=chm --footer=@lazcontrols-chm-footer.xml 2>&1 | tee ./build_chm.log
|
||||
echo ""
|
||||
|
||||
# generate html format
|
||||
# imports done manually to set the correct prefix for the output format
|
||||
# html written to lazcontrols sub-directory
|
||||
echo "Generating HTML help..."
|
||||
$fpdocpgm --project=lazcontrols-project.xml --format=html --footer=@lazcontrols-html-footer.xml --import="$chmdir/rtl.xct,../rtl/" --import="$chmdir/fcl.xct,../fcl/" --import="$chmdir/lcl.xct,../lcl/" --import="$chmdir/lazutils.xct,../lazutils/" --output=lazcontrols 2>&1 | tee ./build_html.log
|
||||
$fpdocpgm --project=lazcontrols-project.xml --format=html --footer=@lazcontrols-html-footer.xml \
|
||||
--import=$chmdir/rtl.xct,../rtl/ --import=$chmdir/fcl.xct,../fcl/ \
|
||||
--import=$chmdir/lcl.xct,../lcl/ --import=$chmdir/lazutils.xct,../lazutils/ \
|
||||
--output=lazcontrols 2>&1 | tee ./build_html.log
|
||||
echo ""
|
||||
|
||||
# copy generated chm, xct to chm directory
|
||||
mv -v lazcontrols.{chm,xct} $chmdir/
|
||||
|
||||
# generate an archive for html content
|
||||
cp -v lazcontrols.css ./lazcontrols
|
||||
7z a -t7z -mx9 -r docs-html-lazcontrols-$dt.7z ./lazcontrols/
|
||||
#mv -v docs-html-lazcontrols-$dt.7z $docdir/build/html/
|
||||
|
||||
# clean up
|
||||
rm -rf ./lazcontrols
|
||||
rm -v lazcontrols-*-footer.xml
|
||||
#rm -v *.log
|
||||
rm -v *.log
|
||||
#rm -v *.7z
|
||||
|
Loading…
Reference in New Issue
Block a user