aboutsummaryrefslogtreecommitdiff
path: root/manifests/dependencies.pp
blob: 19bd05491db0a20f6f1eb191f8eebc4917cd7b74 (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
class pyroscope::dependencies {
  # From https://github.com/pyroscope/rtorrent-ps/blob/master/docs/DebianInstallFromSource.md#build-rtorrent-and-core-dependencies-from-source
  package { [
              'tmux',
              'wget',
              'build-essential',
              'subversion',
              'git',
              'python-setuptools',
              'python-virtualenv',
              'python-dev',
              'libsigc++-2.0-dev',
              'libssl-dev',
              'libncurses-dev',
              'libncursesw5-dev'
              'locales',
              'libcppunit-dev',
              'autoconf',
              'automake',
              'libtool',
              'libxml2-dev',
              'libxslt1-dev',
            ]:
    ensure  => present,
  }
}