forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·41 lines (35 loc) · 744 Bytes
/
update.sh
File metadata and controls
executable file
·41 lines (35 loc) · 744 Bytes
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
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="tiff"
readonly ownership="Tiff Upstream <kwrobot@kitware.com>"
readonly subtree="ThirdParty/$name/vtk$name"
readonly repo="https://gitlab.kitware.com/third-party/tiff.git"
readonly tag="for/vtk-old"
readonly paths="
.gitattributes
CMakeLists.txt
ChangeLog
COPYRIGHT
README
README.kitware.md
libtiff/CMakeLists.txt
libtiff/libtiff.def
libtiff/libtiff.map
libtiff/*.c
libtiff/*.h
libtiff/tif_config.h.cmake.in
libtiff/tiffconf.h.cmake.in
port/CMakeLists.txt
port/dummy.c
port/libport.h
port/snprintf.c
"
extract_source () {
git_archive
pushd "$extractdir/$name-reduced"
rm -v libtiff/*.vc.h libtiff/*.wince.h
popd
}
. "${BASH_SOURCE%/*}/../update-common.sh"