README : add build guide.

This commit is contained in:
Dmitry Voronin 2023-07-31 05:00:44 +03:00
parent aee04b95de
commit c30cf8d4da

27
README.md Normal file
View file

@ -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
```