Add plain documentation
This commit is contained in:
parent
d5a764afae
commit
9ff26c0748
3 changed files with 27 additions and 0 deletions
14
scripts/build.docs.none/build.install-docs
Normal file
14
scripts/build.docs.none/build.install-docs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# create destination directories
|
||||
echo "Installing documentation into ${DOCSDIR}"
|
||||
build_dir_tree "${DOCSDIR}" || return 1
|
||||
|
||||
# copy across the files (note this copies everything with mode 0644).
|
||||
for file in src/@NAME@/*
|
||||
do
|
||||
[ "$(echo $(basename ${file}) | cut -b1-6)" == "build." ] && continue
|
||||
install_file ${file} ${DOCSDIR} 0644 || return 1
|
||||
done
|
||||
|
||||
print_success "Documentation installed"
|
||||
# kate: @KATE_MODELINE@
|
||||
# vim: @VIM_MODELINE@
|
||||
Loading…
Add table
Add a link
Reference in a new issue