summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/strace/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/strace/package.py')
-rw-r--r--var/spack/repos/builtin/packages/strace/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/strace/package.py b/var/spack/repos/builtin/packages/strace/package.py
new file mode 100644
index 0000000000..b43e2c4ef4
--- /dev/null
+++ b/var/spack/repos/builtin/packages/strace/package.py
@@ -0,0 +1,20 @@
+# 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 Strace(AutotoolsPackage):
+ """Strace is a diagnostic, debugging and instructional userspace
+ utility for Linux. It is used to monitor and tamper with interactions
+ between processes and the Linux kernel, which include system calls,
+ signal deliveries, and changes of process state."""
+
+ homepage = "https://strace.io"
+ url = "https://strace.io/files/4.21/strace-4.21.tar.xz"
+
+ conflicts('platform=darwin', msg='strace runs only on Linux.')
+
+ version('4.21', '785b679a75e9758ebeb66816f315b9fe')