File indexing completed on 2024-12-22 04:17:03
0001 #! /bin/sh 0002 meinproc5 --srcdir /usr/share/kf5/kdoctools --stylesheet customization/kde-web.xsl index.docbook 0003 0004 if [ ! -d build ]; then 0005 mkdir -p build; 0006 fi 0007 if [ ! -d build/html ]; then 0008 mkdir -p build/html; 0009 fi 0010 if [ ! -d build/common ]; then 0011 mkdir -p build/common; 0012 fi 0013 0014 mv *.html build/html 0015 cp *png build/html 0016 cp gyrodata.dat.gz build/html 0017 cp /usr/share/doc/HTML/en/kdoctools5-common/kde-default.css build/common 0018 cp /usr/share/doc/HTML/en/kdoctools5-common/part_of_the_kde_family_horizontal_190.png build/common 0019