diff options
-rw-r--r-- | var/spack/repos/builtin/packages/collectd/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/collectd/package.py b/var/spack/repos/builtin/packages/collectd/package.py new file mode 100644 index 0000000000..35472a4a67 --- /dev/null +++ b/var/spack/repos/builtin/packages/collectd/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Collectd(AutotoolsPackage): + """The system statistics collection daemon.""" + + homepage = "http://collectd.org/" + url = "https://github.com/collectd/collectd/archive/collectd-5.11.0.tar.gz" + + version('5.11.0', sha256='639676d09c5980ceea90b5a97811a9647d94e368528cce7cea3d43f0f308465d') + version('5.10.0', sha256='bcde95a3997b5eee448d247d9414854994b3592cb9fb4fecd6ff78082cc28a1b') + + depends_on('m4', type='build') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') |