mirror of
https://github.com/reactos/CMake.git
synced 2025-01-22 19:44:50 +00:00
25 lines
590 B
Bash
Executable File
25 lines
590 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
shopt -s dotglob
|
|
|
|
readonly name="KWSys"
|
|
readonly ownership="KWSys Upstream <kwrobot@kitware.com>"
|
|
readonly subtree="Source/kwsys"
|
|
readonly repo="https://gitlab.kitware.com/utils/kwsys.git"
|
|
readonly tag="master"
|
|
readonly shortlog=true
|
|
readonly paths="
|
|
"
|
|
|
|
extract_source () {
|
|
git_archive
|
|
sed -i -e '/import off/,/import on/d' "$extractdir/$name-reduced/.gitattributes"
|
|
sed -i -e 's/project=KWSys/project=PublicDashboard/' "$extractdir/$name-reduced/CTestConfig.cmake"
|
|
}
|
|
|
|
export HOOKS_ALLOW_KWSYS=1
|
|
|
|
. "${BASH_SOURCE%/*}/update-third-party.bash"
|