diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-11 09:55:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 20:55:33 -0500 |
commit | 3a59057f7465d9982e26b92cddafa0ea9ba48806 (patch) | |
tree | 0d47e3112c93453eec8c61e05a26f04bd5f6b42d | |
parent | 28564620f67a3e27b5299057a882ec0e55395fac (diff) | |
download | spack-3a59057f7465d9982e26b92cddafa0ea9ba48806.tar.gz spack-3a59057f7465d9982e26b92cddafa0ea9ba48806.tar.bz2 spack-3a59057f7465d9982e26b92cddafa0ea9ba48806.tar.xz spack-3a59057f7465d9982e26b92cddafa0ea9ba48806.zip |
Add new package: universal-ctags (#18962)
-rw-r--r-- | var/spack/repos/builtin/packages/universal-ctags/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/universal-ctags/package.py b/var/spack/repos/builtin/packages/universal-ctags/package.py new file mode 100644 index 0000000000..4027e589ec --- /dev/null +++ b/var/spack/repos/builtin/packages/universal-ctags/package.py @@ -0,0 +1,23 @@ +# 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 UniversalCtags(AutotoolsPackage): + """Universal Ctags generates an index (or tag) file of language + objects found in source files for many popular programming languages. + This index makes it easy for text editors and other tools to locate + the indexed items.""" + + homepage = "https://ctags.io/" + git = "https://github.com/universal-ctags/ctags.git" + + version('master', branch='master') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') |