lw-build-system/scripts/build.docs.none/build.install-docs
Laurence Withers 0e9f48ff2d Big copyright update
Uses new-style copyright notices and improves consistency a bit. Removes the
old KATE_MODELINE stuff.
2010-11-25 15:32:52 +00:00

13 lines
425 B
Bash

# 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"
# vim: syntax=sh:@VIM_MODELINE@