From 071fb3dd6abf3f66053b605bab8081fc1bfec06e Mon Sep 17 00:00:00 2001 From: Geoffrey Oxberry Date: Fri, 6 Sep 2019 10:48:08 -0700 Subject: [PATCH] iso-codes: new package (#12389) --- .../builtin/packages/iso-codes/package.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 var/spack/repos/builtin/packages/iso-codes/package.py diff --git a/var/spack/repos/builtin/packages/iso-codes/package.py b/var/spack/repos/builtin/packages/iso-codes/package.py new file mode 100644 index 00000000000..d84da3924d0 --- /dev/null +++ b/var/spack/repos/builtin/packages/iso-codes/package.py @@ -0,0 +1,23 @@ +# 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 IsoCodes(AutotoolsPackage): + """ISO-codes provides lists of various ISO standards""" + + homepage = "https://salsa.debian.org/iso-codes-team/iso-codes" + url = "https://deb.debian.org/debian/pool/main/i/iso-codes/iso-codes_4.3.orig.tar.xz" + + version('4.3', sha256='643eb83b2d714e8650ed7112706968d057bf5b101ba71c8ef219e20f1737b141') + + depends_on('m4', type='build') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('gettext', type='build') + depends_on('python@3:', type='build')