55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
-
+
-
+
|
set baseUri https://urn.to/r/pkgd
}
#
# NOTE: The URI where a single package file may be found. This file will
# belong to a specific version of one package.
#
variable downloadUri; # DEFAULT: ${baseUri}?...&filename=${fileName}
variable downloadUri; # DEFAULT: ${baseUri}?...&filename=${fileName}&m=bin
if {![info exists downloadUri]} then {
set downloadUri {${baseUri}?download&ci=trunk&filename=${fileName}}
set downloadUri {${baseUri}?download&ci=trunk&filename=${fileName}&m=bin}
}
#
# NOTE: The root directory where any persistent packages will be saved.
#
variable persistentRootDirectory; # DEFAULT: [getPersistentRootDirectory]
|