summaryrefslogtreecommitdiff
path: root/Utilities/Scripts/update-pdcurses.bash
blob: b1a281567ea0c179fce0da76aa96ea0acd2c3dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash

set -e
set -x
shopt -s dotglob

readonly name="PDCurses"
readonly ownership="PDCurses Upstream <kwrobot@kitware.com>"
readonly subtree="Utilities/cmpdcurses"
readonly repo="https://github.com/wmcbrine/PDCurses.git"
readonly tag="f1cd4f4569451a5028ddf3d3c202f0ad6b1ae446"
readonly shortlog=false
readonly paths="
  README.md
  *.h
  common/acs437.h
  common/acsuni.h
  pdcurses/README.md
  pdcurses/*.c
  wincon/README.md
  wincon/*.c
  wincon/*.h
"

extract_source () {
    git_archive
    pushd "${extractdir}/${name}-reduced"
    echo "* -whitespace" > .gitattributes
    popd
}

. "${BASH_SOURCE%/*}/update-third-party.bash"