summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/acpid/package.py
blob: 902c5e8edd76d5cdb951f364a6734c9587871110 (plain) (blame)
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
# Copyright 2013-2022 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 Acpid(AutotoolsPackage):
    """ACPID used to try to handle events internally.  Rather than try to climb
    an ever-growing mountain, ACPID now lets YOU define what events to handle.
    Any event that publishes itself to /proc/acpi/event can be handled.
    ACPID reads a set of configuration files which define event->action pairs.
    This is how you make it do stuff. See the man page for details."""

    homepage = "http://www.tedfelix.com"
    url      = "https://github.com/Distrotech/acpid/archive/2.0.28.tar.gz"

    version('2.0.28', sha256='cb5709b96f85e1bfee7a3fc17e56bef7244caa1b0ad762a4813fe731ef3c8438')
    version('2.0.27', sha256='da4691f408d9ef201937eaab7c894072ee8aa0ba35794f2388b606b3208fab07')
    version('2.0.26', sha256='ac7238dc5ecc9a915e95d5b54be12b6221d0a0ad09109f9024e50946ecd3c602')
    version('2.0.25', sha256='947d2e4f9b2d61a728ce5d6139901f1b666dcef5e2a48833cb33d82895e261cf')
    version('2.0.24', sha256='05903901369c4ebea1d24e445b4a1d516dd3b07e7864cc752a2d09b4147e1985')

    depends_on('autoconf',  type='build')
    depends_on('automake',  type='build')
    depends_on('libtool',   type='build')
    depends_on('m4',        type='build')