summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/lsof/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/lsof/package.py')
-rw-r--r--var/spack/repos/builtin/packages/lsof/package.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/lsof/package.py b/var/spack/repos/builtin/packages/lsof/package.py
new file mode 100644
index 0000000000..b03afeb004
--- /dev/null
+++ b/var/spack/repos/builtin/packages/lsof/package.py
@@ -0,0 +1,28 @@
+# Copyright 2013-2018 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', '8afbaff3ee308edc130bdc5df0801c8f')
+
+ 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)