Add new package: sse2neon (#16168)

This commit is contained in:
darmac 2020-04-21 05:59:51 +08:00 committed by GitHub
parent 45fee6edbd
commit e4805bb75f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,23 @@
# Copyright 2013-2020 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 *
import glob
class Sse2neon(Package):
"""A C/C++ header file that converts Intel SSE intrinsics to ARN NEON
intrinsics."""
homepage = "https://github.com/jratcliff63367/sse2neon"
git = "https://github.com/jratcliff63367/sse2neon.git"
version('master', branch='master')
def install(self, spec, prefix):
mkdirp(prefix.include)
headers = glob.glob('*.h')
for f in headers:
install(f, prefix.include)