You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
395 B
23 lines
395 B
9 years ago
|
#!/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="http://public.kitware.com/KWSys.git"
|
||
|
readonly tag="master"
|
||
|
readonly shortlog=true
|
||
|
readonly paths="
|
||
|
"
|
||
|
|
||
|
extract_source () {
|
||
|
git_archive
|
||
|
}
|
||
|
|
||
|
export HOOKS_ALLOW_KWSYS=1
|
||
|
|
||
|
. "${BASH_SOURCE%/*}/update-third-party.bash"
|