2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2019-09-07 01:48:08 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2019-09-07 01:48:08 +08:00
|
|
|
|
|
|
|
|
|
|
|
class IsoCodes(AutotoolsPackage):
|
|
|
|
"""ISO-codes provides lists of various ISO standards"""
|
|
|
|
|
|
|
|
homepage = "https://salsa.debian.org/iso-codes-team/iso-codes"
|
2022-07-31 06:19:18 +08:00
|
|
|
url = "https://deb.debian.org/debian/pool/main/i/iso-codes/iso-codes_4.3.orig.tar.xz"
|
2019-09-07 01:48:08 +08:00
|
|
|
|
2023-03-08 14:18:10 +08:00
|
|
|
version("4.13.0", sha256="2d4d0e5c02327f52cf7c029202da72f2074348472c26904b7104d2be3e0750ef")
|
2022-07-31 06:19:18 +08:00
|
|
|
version("4.3", sha256="643eb83b2d714e8650ed7112706968d057bf5b101ba71c8ef219e20f1737b141")
|
2019-09-07 01:48:08 +08:00
|
|
|
|
2022-07-31 06:19:18 +08:00
|
|
|
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")
|