org-cv/installs.sh

24 lines
768 B
Bash
Raw Normal View History

2018-05-01 16:14:16 +00:00
#!/usr/bin/env bash
wget https://github.com/gohugoio/hugo/releases/download/v0.39/hugo_0.39_Linux-64bit.deb
dpkg -i hugo*.deb
2018-05-01 16:22:50 +00:00
echo "Installed Hugo:"
2018-05-01 16:14:16 +00:00
hugo version
# These installs could be moved to the Dockerfile
apt-get update && apt-get --no-install-recommends install -y texlive-luatex fonts-font-awesome
2018-05-01 16:14:16 +00:00
# Latex
latexdir=/root/texmf/tex/latex
mkdir -p $latexdir
2018-05-01 16:22:50 +00:00
echo "Install altacv"
wget https://github.com/Titan-C/AltaCV/archive/sections.zip
unzip -j sections.zip -d $latexdir/AltaCV
2018-05-01 16:51:00 +00:00
echo "Install moderncv"
wget https://github.com/Titan-C/moderncv/archive/master.zip
unzip -j master.zip -d $latexdir/moderncv
echo "Install AwesomeCV"
wget -O awesomecv.zip https://github.com/posquit0/Awesome-CV/archive/refs/heads/master.zip
unzip awesomecv.zip -d $latexdir