2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2018-05-06 06:16:48 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +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"
|
2018-07-23 15:00:15 +08:00
|
|
|
git = "https://github.com/afeldman/libshm.git"
|
2018-05-06 06:16:48 +08:00
|
|
|
|
2018-07-23 15:00:15 +08:00
|
|
|
version('master')
|
2018-05-06 06:16:48 +08:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
install_tree('include', prefix.include)
|