forked from mirrors/org-cv
c6805e1d92
gitignore emacs bytecode with dir update to hugo of 2022-06 Update theme with fixes for new hugo version
23 lines
774 B
Bash
Executable file
23 lines
774 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
wget https://github.com/gohugoio/hugo/releases/download/v0.100.2/hugo_0.100.2_Linux-64bit.deb
|
|
dpkg -i hugo*.deb
|
|
|
|
echo "Installed Hugo:"
|
|
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
|
|
|
|
# Latex
|
|
latexdir=/root/texmf/tex/latex
|
|
mkdir -p $latexdir
|
|
echo "Install altacv"
|
|
wget https://github.com/Titan-C/AltaCV/archive/sections.zip
|
|
unzip -j sections.zip -d $latexdir/AltaCV
|
|
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
|