diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tengwarscript/install-tengwar-scripts.sh')
-rwxr-xr-x | Master/texmf-dist/doc/latex/tengwarscript/install-tengwar-scripts.sh | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tengwarscript/install-tengwar-scripts.sh b/Master/texmf-dist/doc/latex/tengwarscript/install-tengwar-scripts.sh new file mode 100755 index 00000000000..2b826daba42 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tengwarscript/install-tengwar-scripts.sh @@ -0,0 +1,111 @@ +#!/usr/bin/env bash + +# Check the tengwarscript package is installed. +kpsewhich tengwarscript.sty +ERROR_CODE=$? +if [ $ERROR_CODE -ne 0 ]; then + echo "Error: tengwarscript is not installed." + exit $ERROR_CODE +fi + +# Terminate as soon as any command fails +set -e + +# Enable the font maps in the tengwarscript package. +updmap --enable Map=tengwarscript.map + +# Choose the directory to put the fonts in. +# This could also be just ~/texmf/fonts/truetype. +# The additional directory is a little neater, though, +# and matches the documentation. +FONT_DIR=~/texmf/fonts/truetype/tengwarscript +mkdir --parents $FONT_DIR +cd $FONT_DIR + +# Note: the following way of entering and exiting directories avoids having to prefix every file with $FONT_DIR, +# but also makes it susceptible to forgetting the current directory and end up putting things in the wrong place. +# I've decided that it's easier to explicitly enter and exit directories than to put $FONT_DIR in front of everything, +# and then potentially forget that when editing later. +mkdir --parents parmaite +wget --no-verbose --continue 'http://at.mansbjorkman.net/Downloads/Parmaite2.zip' +unzip -u Parmaite2.zip -d $FONT_DIR/parmaite +cd parmaite +mv --verbose Parmaite.TTF Parmaite.ttf +mv --verbose Parmaite_alt.TTF Parmaite_alt.ttf +cd $FONT_DIR + +mkdir --parents elfica +wget --no-verbose --continue 'http://www.oocities.org/enrombell/files/Pack_en.zip' +unzip -u Pack_en.zip -d $FONT_DIR/elfica +cd elfica +mv --verbose Elfica200841se07.ttf Elfica32.ttf +cd $FONT_DIR + +mkdir --parents gothika +wget --no-verbose --continue 'http://www.oocities.org/enrombell/files/Gothika_en.zip' +unzip -u Gothika_en.zip -d $FONT_DIR/gothika +cd gothika +mv --verbose Gothika2008-se001.ttf TengwarGothika050.ttf +cd $FONT_DIR + +mkdir --parents formal +wget --no-verbose --continue 'http://tengwarformal.limes.com.pl/fonts/TengwarFormal-12c-ttf-pc.zip' +unzip -u TengwarFormal-12c-ttf-pc.zip -d $FONT_DIR/formal +cd formal/TengwarFormal-12c-ttf-pc/fonts +mv --verbose TengwarFormal12b.ttf TengwarFormal12.ttf +mv --verbose TengwarFormalA12b.ttf TengwarFormalA12.ttf +cd $FONT_DIR + +mkdir --parents annatar +wget --no-verbose --continue -O annatar.zip 'http://web.comhem.se/alatius/fonts/tngan120.zip' +unzip -u annatar.zip -d $FONT_DIR/annatar + +mkdir --parents quenya +wget --no-verbose --continue -O quenya.zip 'http://img.dafont.com/dl/?f=tengwar_quenya' +unzip -u quenya.zip -d $FONT_DIR/quenya +cd quenya +mv --verbose QUENYA.TTF TengwarQuenya.ttf +mv --verbose QUENYAA.TTF TengwarQuenyaAlt.ttf +mv --verbose QUENCAP1.TTF TengwarQuenyaCapitals1.ttf +mv --verbose QUENCAP2.TTF TengwarQuenyaCapitals2.ttf +cd $FONT_DIR + +mkdir --parents sindarin +wget --no-verbose --continue -O sindarin.zip 'http://img.dafont.com/dl/?f=tengwar_sindarin' +unzip -u sindarin.zip -d $FONT_DIR/sindarin +cd sindarin +mv --verbose SINDAR.TTF TengwarSindarin.ttf +mv --verbose SINDARA.TTF TengwarSindarinAlt.ttf +mv --verbose SINDCAP1.TTF TengwarSindarinCapitals1.ttf +mv --verbose SINDCAP2.TTF TengwarSindarinCapitals2.ttf +cd $FONT_DIR + +mkdir --parents noldor +wget --no-verbose --continue -O noldor.zip 'http://img.dafont.com/dl/?f=tengwar_noldor' +unzip -u noldor.zip -d $FONT_DIR/noldor +cd noldor +mv --verbose NOLDOR.TTF TengwarNoldor.ttf +mv --verbose NOLDORA.TTF TengwarNoldorAlt.ttf +mv --verbose NOLDCAP1.TTF TengwarNoldorCapitals1.ttf +mv --verbose NOLDCAP2.TTF TengwarNoldorCapitals2.ttf +cd $FONT_DIR + +mkdir --parents teleri +wget --no-verbose --continue -O teleri.zip 'http://img.dafont.com/dl/?f=tengwar_teleri' +unzip -u teleri.zip -d $FONT_DIR/teleri +cd teleri +mv --verbose 'Tengwar Telerin.ttf' TengwarTelerin.ttf +cd $FONT_DIR + +mkdir --parents ~/texmf/fonts/type1/tengwarscript/ +cd ~/texmf/fonts/type1/tengwarscript/ +mkdir --parents unicodeparmaite +wget --no-verbose --continue 'http://www.uv.es/~conrad/UnicodeTengwarParmaite.tar.gz' +tar --ungzip --extract --overwrite --keep-newer-files --file UnicodeTengwarParmaite.tar.gz --directory unicodeparmaite +cd unicodeparmaite +mv --verbose parmaite.pfb UnicodeParmaite.pfb +cd ~/texmf/fonts/type1/tengwarscript/ + +# DONE: update names to match /usr/share/texlive/texmf-dist/fonts/map/dvips/tengwarscript/tengwarscript.map +# DONE: install unicodeparmaite as well +# DONE: make install safer by removing `cd -` commands. |