aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office.pp
blob: 978efe8551032774066cdfaa01c869c49d8d1294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
class nodo::utils::office {
  # Office
  package { [
    'vim-gtk',
    'gobby',
    'libreoffice',
    'sc',
    'antiword',
    'unrtf',
    'pandoc',
    'wyrd',
    'gnucash',
    'worklog',
    'pdftk',
    'fbreader',
    'pdfgrep',
    'mat',
    'evince',
    'aewan',
    'autocutsel',
    'parcellite',
  ]:
    ensure => installed,
  }

  # Finance
  package { [
    'ledger',
    'clipf',
    'misery',
  ]:
    ensure  => present,
  }

  # LaTeX
  package { [
    'texlive-latex-base',
    'texlive-latex-recommended',
    'texlive-latex-extra',
    'texlive-fonts-extra',
    'vim-latexsuite',
    'pdfjam',
  ]:
    ensure => present,
  }

  # Not in use
  package { [
    'kalarm',
    'gnumeric',
    'jekyll',
    'taskwarrior',
    'vit',
    'hledger',
    'dia',
    'calibre',
  ]:
    ensure  => absent,
  }
}