diff options
author | Robert Alessi <alessi@robertalessi.net> | 2024-03-03 06:53:16 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2024-03-03 06:53:16 +0100 |
commit | dd479b57bc123c6bf28ca91e3a0f71c3c512a6dd (patch) | |
tree | aa4d7a6bee7eb549695aab629538270a3555bc0a /tl-build.sh | |
parent | 6514e1a923933aff1e389844be5d833efdd39f92 (diff) | |
download | texlive-openbsd-dd479b57bc123c6bf28ca91e3a0f71c3c512a6dd.tar.gz |
some embellishments in tl-build.sh
Diffstat (limited to 'tl-build.sh')
-rwxr-xr-x | tl-build.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tl-build.sh b/tl-build.sh index caa9e14..fa0b1bc 100755 --- a/tl-build.sh +++ b/tl-build.sh | |||
@@ -5,6 +5,21 @@ | |||
5 | this_dir=`pwd` | 5 | this_dir=`pwd` |
6 | tl_sourcedir=`pwd`/source | 6 | tl_sourcedir=`pwd`/source |
7 | 7 | ||
8 | echo "" | ||
9 | echo " TeX Live for OpenBSD built script " | ||
10 | echo "" | ||
11 | echo "You are about to build TeX Live from the development sources." | ||
12 | echo "Please specify whether you also want to include xindy, context" | ||
13 | echo "and asymptote in the process." | ||
14 | echo "" | ||
15 | |||
16 | echo "Do I have to get the latest development sources? (You ought to" | ||
17 | echo "have done so before launching this script.)" | ||
18 | read get_dev_src'[y/n] ' | ||
19 | if [[ ${get_dev_src} == "y" ]]; then | ||
20 | ./checkout-tl.sh && echo "... Ok." | ||
21 | fi | ||
22 | |||
8 | echo "Include clisp and xindy?" | 23 | echo "Include clisp and xindy?" |
9 | read with_clisp?'[y/n] ' | 24 | read with_clisp?'[y/n] ' |
10 | enable_xindy="" | 25 | enable_xindy="" |