mirror of https://gitee.com/openkylin/vtk9.git
31 lines
546 B
Bash
31 lines
546 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
shopt -s dotglob
|
||
|
|
||
|
readonly name="pugixml"
|
||
|
readonly ownership="Proj Upstream <kwrobot@kitware.com>"
|
||
|
readonly subtree="ThirdParty/$name/vtk$name"
|
||
|
readonly repo="https://gitlab.kitware.com/third-party/pugixml.git"
|
||
|
readonly tag="for/vtk-20210727-1.11.4"
|
||
|
readonly paths="
|
||
|
.gitattributes
|
||
|
LICENSE.md
|
||
|
CMakeLists.txt
|
||
|
README.md
|
||
|
readme.txt
|
||
|
README.kitware.md
|
||
|
|
||
|
src/pugiconfig.hpp.in
|
||
|
src/pugixml.cpp
|
||
|
src/pugixml.hpp
|
||
|
src/vtk_pugixml_mangle.h
|
||
|
"
|
||
|
|
||
|
extract_source () {
|
||
|
git_archive
|
||
|
}
|
||
|
|
||
|
. "${BASH_SOURCE%/*}/../update-common.sh"
|