Add new package: dnsmap (#18760)

This commit is contained in:
darmac 2020-09-24 09:59:11 +08:00 committed by GitHub
parent 84f111ff85
commit 3cdb79f569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# 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 *
class Dnsmap(MakefilePackage):
"""dnsmap was originally released back in 2006 and was inspired
by the fictional story."""
homepage = "https://github.com/makefu/dnsmap"
git = "https://github.com/makefu/dnsmap.git"
version('master', branch='master')
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('dnsmap', prefix.bin)