new package: intel-pin (#10546)

This commit is contained in:
Matthias Diener 2019-03-01 12:29:01 -06:00 committed by Peter Scheibel
parent 1a8161a982
commit ee5e5ce3c6

View File

@ -0,0 +1,23 @@
# 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 *
from os import symlink
class IntelPin(Package):
"""Intel Pin is a dynamic binary instrumentation framework for the IA-32,
x86-64 and MIC instruction-set architectures that enables the creation of
dynamic program analysis tools."""
homepage = "http://www.pintool.org"
maintainers = ['matthiasdiener']
version('3.7', sha256='4730328795be61f1addb0e505a3792a4b4ca80b1b9405acf217beec6b5b90fb8', url='https://software.intel.com/sites/landingpage/pintool/downloads/pin-3.7-97619-g0d0c92f4f-gcc-linux.tar.gz')
def install(self, spec, prefix):
install_tree('.', prefix)
mkdir(prefix.bin)
symlink(join_path(prefix, 'pin'), join_path(prefix.bin, 'pin'))