summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/dropwatch/package.py
blob: 873797d561b16ffd2067013e44614f8e16d6f80d (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
29
30
31
# Copyright 2013-2021 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 Dropwatch(AutotoolsPackage):
    """Dropwatch is a project I started in an effort to improve the
    ability for developers and system administrator to diagnose problems
    in the Linux Networking stack, specifically in our ability to
    diagnose where packets are getting dropped."""

    homepage = "https://github.com/nhorman/dropwatch"
    url      = "https://github.com/nhorman/dropwatch/archive/v1.5.3.tar.gz"

    version('1.5.3', sha256='b748b66a816c1f94531446c0451da5461a4a31b0949244bb867d741c6ac0148b')

    depends_on('autoconf', type='build')
    depends_on('automake', type='build')
    depends_on('libtool',  type='build')
    depends_on('m4',       type='build')
    depends_on('libnl')
    depends_on('libpcap')
    depends_on('binutils')
    depends_on('readline')

    def autoreconf(self, spec, prefix):
        bash = which('bash')
        bash('./autogen.sh')