diff options
author | darmac <xiaojun2@hisilicon.com> | 2019-12-15 02:16:39 +0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-14 12:16:39 -0600 |
commit | f40520c6bf22bd7da345dd93eaf1071cb332b667 (patch) | |
tree | d0e56513d9b3eae82a2bdfe8f21ae208183f8b08 /var | |
parent | 33028c8955e8d1b65416e52169a53b40d9a0dbe4 (diff) | |
download | spack-f40520c6bf22bd7da345dd93eaf1071cb332b667.tar.gz spack-f40520c6bf22bd7da345dd93eaf1071cb332b667.tar.bz2 spack-f40520c6bf22bd7da345dd93eaf1071cb332b667.tar.xz spack-f40520c6bf22bd7da345dd93eaf1071cb332b667.zip |
add new package : bind9 (#14172)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/bind9/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bind9/package.py b/var/spack/repos/builtin/packages/bind9/package.py new file mode 100644 index 0000000000..d899c02fd9 --- /dev/null +++ b/var/spack/repos/builtin/packages/bind9/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2019 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 Bind9(AutotoolsPackage): + """ + BIND 9 has evolved to be a very flexible, full-featured DNS system. + """ + + homepage = "https://github.com/isc-projects/bind9" + url = "https://github.com/isc-projects/bind9/archive/v9_14_6.tar.gz" + + version('9_14_6', sha256='98be7a7b6d614b519f6c8d6ec7a8a39759ae9604d87228d9dc7c034471e5433e') + + def configure_args(self): + args = ["--without-python", "--disable-linux-caps"] + return args |