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