forked from quantum-journal/quantum-journal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.ps1
219 lines (179 loc) · 6.83 KB
/
install.ps1
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#!/usr/bin/env powershell
##
# install.ps1: Installs TeX resources to the current user's TeX directory.
##
# This file is part of quantumarticle.
#
# Copyright (c) 2016 Verein zur Förderung des Open Access Publizierens in
# den Quantenwissenschaften (http://quantum-journal.org/about/).
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of quantumarticle, nor the names
# of its contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
##############################################################################
<#
.SYNOPSIS
Installs the {quantumarticle} document class and optionally
builds submission packages.
.EXAMPLE
./install.ps1
.EXAMPLE
./install.ps1 -CTAN
.LINK
http://quantum-journal.org
.LINK
https://github.com/cgogolin/quantum-journal
.PARAMETER CTAN
If present, this script will also build a ZIP archive suitable
for uploading {quantumarticle} to CTAN.
#>
param(
[switch] $CTAN
)
## TYPES #####################################################################
try {
Add-Type -TypeDefinition @"
public enum TeXDistributions {
MiKTeX, TeXLive, Other, None
}
"@
} catch {}
## FUNCTIONS ################################################################
function which {
param([string] $name)
try {
Get-Command $name -ErrorAction Stop | Select-Object -ExpandProperty Definition
} catch {
return $null;
}
}
function detect_latex_distribution() {
if (!(which("latex"))) {
return [TeXDistributions]::None;
}
$version_output = pdflatex --version;
$version_header = $version_output.Split([environment]::NewLine)[0];
if ($version_header.Contains("MiKTeX")) {
return [TeXDistributions]::MiKTeX;
} elseif ($version_header.Contains("TeX Live")) {
return [TeXDistributions]::TeXLive;
} else {
return [TeXDistributions]::Other;
}
}
function find_tex_userdir {
param([TeXDistributions] $tex_dist = [TeXDistributions]::Other)
switch ($tex_dist) {
"MiKTeX" {
$miktex_report = initexmf --report;
foreach ($report_line in $miktex_report.Split([environment]::NewLine)) {
if ($report_line.Contains(":")) {
$key, $value = $report_line.Split(":", 2);
if ($key.ToLower().Trim() -eq "userinstall") {
return $value.Trim();
}
}
}
throw [System.IO.FileNotFoundException] "No MiKTeX user install directory found.";
}
"TeXLive" {
return kpsewhich --expand-var='$TEXMFHOME';
}
"Other" {
# Make a resonable guess if we can't figure out otherwise.
return Resolve-Path "~/texmf";
}
}
}
function install_tex_resource {
param([string]$source, [string]$tds_path, [string]$tex_userdir)
$dest = Join-Path -Path $tex_userdir -ChildPath $tds_path;
# First make sure the TDS path exists.
New-Item -ItemType Directory -Path $dest -ErrorAction Ignore;
# Next, copy the file into the TeX directory.
Copy-Item -Path $source -Destination $dest;
}
function refresh_tex_hash {
param(
[TeXDistributions] $tex_dist = [TeXDistributions]::Other,
[string] $tex_userdir = ""
)
switch ($tex_dist) {
"MiKTeX" {
initexmf --update-fndb;
break;
}
"TeXLive" {
texhash "$tex_userdir";
break;
}
"Other" {
texhash "$tex_userdir";
break;
}
}
}
function assert_installed {
param([string[]] $sources)
# Filter out of kpsewhich the current directory (starts with "./",
# even on operating systems with \ path separators).
foreach ($source in $sources) {
$which_output = kpsewhich -all -progname=pdflatex $source;
$found = $false;
foreach ($which_line in $which_output.Split([environment]::NewLine)) {
if (-not $which_line.StartsWith("./")) {
$found = $true;
}
}
if (-not $found) {
throw [System.IO.FileNotFoundException] "TeX resource $source not installed sucessfully.";
}
}
}
## INSTALL SCRIPT ############################################################
$tex_dist = detect_latex_distribution;
if ($tex_dist -eq [TeXDistributions]::None) {
throw [System.IO.FileNotFoundException] "No LaTeX distribution found. Aborting.";
}
$tex_userdir = find_tex_userdir -tex_dist $tex_dist;
install_tex_resource -source "quantumarticle.cls" -tds_path "tex/latex/quantumarticle" -tex_userdir $tex_userdir;
refresh_tex_hash -tex_dist $tex_dist;
assert_installed "quantumarticle.cls";
echo "All TeX resources installed successfully.";
if ($CTAN) {
# We use PoShTeX for this part so as to make it easier to build TDS archives
# in the future. To do so, we copy and paste bootstrapping code that ensures
# we have at least version 0.1.4 of PoShTeX.
#region Bootstrap PoShTeX
$modules = Get-Module -ListAvailable -Name posh-tex;
if (!$modules) {Install-Module posh-tex -Scope CurrentUser}
if (!($modules | ? {$_.Version -ge "0.1.4"})) {Update-Module posh-tex}
Import-Module posh-tex -Version "0.1.4"
#endregion
# Once we have PoShTeX, we can then directly invoke Export-CTANArchive.
Export-CTANArchive -ArchiveLayout Simple quantumarticle.cls, quantum-template.pdf, quantum-template.tex, README.md, install.sh, install.ps1
}