summaryrefslogtreecommitdiff
path: root/manifests/tex.pp
blob: 310ba5359f7ee841276e01c68b5e5cdb81251f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# @summary Install LaTeX on system.
#
# Package list is currently Archlinux specific.
class profiles::tex {
  ensure_packages([
    'texlive-basic',
    'texlive-binextra',
    'texlive-fontsextra',
    'texlive-fontsrecommmended',
    'texlive-latexextra',
    'texlive-pictures',

    # Can be limited to texlive-langenglish and texlive-langeuropean
    'texlive-lang',

    'ghostscript',
  ])
}