summaryrefslogtreecommitdiff
path: root/manifests/tex.pp
blob: 0b314ed0778809e0cb41afaff476afa481afb06c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# @summary Install LaTeX on system.
#
# Package list is currently Archlinux specific.
class profiles::tex {
  ensure_packages([
    'texlive',

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

    'ghostscript',
  ])
}