summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/tex.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/tex.pp b/manifests/tex.pp
index 2f4c9b1..310ba53 100644
--- a/manifests/tex.pp
+++ b/manifests/tex.pp
@@ -1,8 +1,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',
])
}