diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/diffmark/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/diffmark/package.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/diffmark/package.py b/var/spack/repos/builtin/packages/diffmark/package.py index 4f5d456f48..eccdc7a0a7 100644 --- a/var/spack/repos/builtin/packages/diffmark/package.py +++ b/var/spack/repos/builtin/packages/diffmark/package.py @@ -10,13 +10,13 @@ class Diffmark(AutotoolsPackage): """Diffmark is a DSL for transforming one string to another.""" homepage = "https://github.com/vbar/diffmark" - git = "https://github.com/vbar/diffmark.git" + git = "https://github.com/vbar/diffmark.git" - version('master', branch='master') + version("master", branch="master") - depends_on('autoconf', type='build') - depends_on('automake', type='build') - depends_on('libtool', type='build') - depends_on('m4', type='build') - depends_on('pkgconfig', type='build') - depends_on('libxml2') + depends_on("autoconf", type="build") + depends_on("automake", type="build") + depends_on("libtool", type="build") + depends_on("m4", type="build") + depends_on("pkgconfig", type="build") + depends_on("libxml2") |