spack/var/spack/repos/builtin/packages/libshm/package.py

20 lines
550 B
Python
Raw Normal View History

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
2018-05-06 06:16:48 +08:00
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
2018-05-06 06:16:48 +08:00
from spack import *
class Libshm(Package):
"""Libshm is a header library
making an easy C++11 access to a shared memory."""
homepage = "https://github.com/afeldman/libshm"
git = "https://github.com/afeldman/libshm.git"
2018-05-06 06:16:48 +08:00
version('master')
2018-05-06 06:16:48 +08:00
def install(self, spec, prefix):
install_tree('include', prefix.include)