From c30cf8d4daaaf1bdac04ff74cc8396d2dfd55304 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Mon, 31 Jul 2023 05:00:44 +0300 Subject: [PATCH] README : add build guide. --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d242da6 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Dmitry Voronin Resume. + +## How to build. +```bash +make $target +``` + +### Available targets. +taget | description +--- | --- +all | Clean, build and view all languages. +clean | Clean project from build files. +en | Build English resume. +ru | Build Russian resume. +view | View built resumes in default PDF viewer. + +## Requirements. +This project is built using TeX (LuaLaTeX) on GNU/Linux. + +### Texlive setup. +```bash +$ wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz +$ tar -xf install-tl-unx.tar.gz +$ rm install-tl-unx.tar.gz +$ cd ./install-tl-* +$ ./install-tl +```