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 42 43 44 45
|
#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="GDCM"
readonly ownership="GDCM Upstream <gdcm-developers@lists.sourceforge.net>"
readonly subtree="Modules/ThirdParty/GDCM/src/gdcm"
readonly repo="http://git.code.sf.net/p/gdcm/gdcm.git"
readonly tag="release-2-8"
readonly shortlog=false
readonly paths="
CMake/UseCopyright.cmake
CMake/InstallMacros.cmake
CMake/COPYING-CMAKE-SCRIPTS
CMakeLists.txt
Copyright.txt
Source
Utilities/C99
Utilities/CMakeLists.txt
Utilities/gdcmcharls
Utilities/gdcm_charls.h
Utilities/gdcm_expat.h
Utilities/gdcmjpeg
Utilities/gdcm_ljpeg12.h
Utilities/gdcm_ljpeg16.h
Utilities/gdcm_ljpeg8.h
Utilities/gdcmmd5
Utilities/gdcm_md5.h
Utilities/gdcm_openjpeg.h
Utilities/gdcmopenjpeg
Utilities/gdcmrle
Utilities/gdcmutfcpp
Utilities/gdcmuuid
Utilities/gdcm_uuid.h
Utilities/gdcm_zlib.h
Utilities/socketxx
"
extract_source () {
git_archive
}
. "${BASH_SOURCE%/*}/../../../Utilities/Maintenance/update-third-party.bash"
|