
* abi-dumper: remove custom phases * apktool: remove custom phases, add v2.6.1 * aragorn: remove custom phases * ascent: remove custom phases * astral: remove custom phases, add v5.7.1 * bigdft: remove redundant phase definitions * bazel: remove custom phases phase definitions * blasr: remove custom phases phase definitions * bmake: remove custom phases phase definitions, add v20220330 * botan: remove custom phases phase definitions * breakdancer: remove custom phases phase definitions * dnstracer: remove custom phases phase definitions * conduit: remove custom phases phase definitions * eclipse-gcj-parser: remove custom phases phase definitions * eem: remove custom phases phase definitions * fasttree: remove custom phases phase definitions * fleur: remove custom phases phase definitions * fpm: remove custom phases phase definitions * genie: remove custom phases phase definitions * gluegen: remove custom phases phase definitions * gnat: remove custom phases phase definitions * hpgmg: remove custom phases phase definitions * karma: remove custom phases phase definitions * libc: remove custom phases phase definitions
23 lines
709 B
Python
23 lines
709 B
Python
# Copyright 2013-2022 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 Dnstracer(MakefilePackage):
|
|
"""Dnstracer determines where a given Domain Name Server gets
|
|
its information from, and follows the chain of DNS servers back to
|
|
the servers which know the data.
|
|
"""
|
|
|
|
homepage = "https://github.com/Orc/dnstracer"
|
|
git = "https://github.com/Orc/dnstracer.git"
|
|
|
|
version('master', branch='master')
|
|
|
|
def edit(self, spec, prefix):
|
|
configure = Executable('./configure.sh')
|
|
configure('--prefix={0}'.format(prefix))
|