#!/usr/bin/env bash set -e set -x shopt -s dotglob readonly name="tiff" readonly ownership="Tiff Upstream " readonly subtree="ThirdParty/$name/vtk$name" readonly repo="https://gitlab.kitware.com/third-party/tiff.git" readonly tag="for/vtk-20210802.1-4.3.0" readonly paths=" .gitattributes CMakeLists.txt ChangeLog COPYRIGHT README.md README.kitware.md cmake/AutotoolsCompat.cmake cmake/CXXLibrary.cmake cmake/CompilerChecks.cmake cmake/DeflateCodec.cmake cmake/FindCMath.cmake cmake/IncludeChecks.cmake cmake/InternalCodecs.cmake cmake/JBIGCodec.cmake cmake/JPEGCodec.cmake cmake/LERCCodec.cmake cmake/LZMACodec.cmake cmake/LargeFileSupport.cmake cmake/LibraryFeatures.cmake cmake/LinkerChecks.cmake cmake/OpenGLChecks.cmake cmake/PixarLogCodec.cmake cmake/ProcessorChecks.cmake cmake/SymbolChecks.cmake cmake/TypeSizeChecks.cmake cmake/WebPCodec.cmake cmake/WindowsSupport.cmake cmake/ZSTDCodec.cmake 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/getopt.c port/libport.h port/libport_config.h.cmake.in " extract_source () { git_archive pushd "$extractdir/$name-reduced" rm -vf libtiff/*.vc.h libtiff/*.wince.h popd } . "${BASH_SOURCE%/*}/../update-common.sh"