FILES_INSTALL_DIR="${SHAREDIR}/@NAME@" # @TODO@ # create destination directories echo "Installing files into ${FILES_INSTALL_DIR}" build_dir_tree "${FILES_INSTALL_DIR}" || 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} ${FILES_INSTALL_DIR} 0644 || return 1 done print_success "Files installed" # vim: syntax=sh:@VIM_MODELINE@