blob: 8bc2c8897a693e4888a1d4e3b9ebec8e8a0e28a0 (
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-2019 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 Lsof(Package):
"""Lsof displays information about files open to Unix processes."""
homepage = "https://people.freebsd.org/~abe/"
url = "https://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_4.89.tar.gz"
version('4.89', sha256='ff4ac555966b587f06338475c8fcc0f41402b4c8e970e730f6f83b62be8b5c0d')
def install(self, spec, prefix):
tar = which('tar')
tar('xf', 'lsof_{0}_src.tar'.format(self.version))
with working_dir('lsof_{0}_src'.format(self.version)):
configure = Executable('./Configure')
configure('-n', 'linux')
make()
mkdir(prefix.bin)
install('lsof', prefix.bin)
|