summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/dnsmap/package.py
blob: 5e0c9c28d19dc425dc213150548a7778b99e2c8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2023 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.package 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"

    license("GPL-2.0-or-later")

    version("master", branch="master")

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install("dnsmap", prefix.bin)