2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-10-10 05:14:19 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2017-10-10 05:14:19 +08:00
|
|
|
|
|
|
|
|
2019-12-21 06:32:18 +08:00
|
|
|
class Aspell6Es(AspellDictPackage, GNUMirrorPackage):
|
2017-10-10 05:14:19 +08:00
|
|
|
"""Spanish (es) dictionary for aspell."""
|
|
|
|
|
|
|
|
homepage = "http://aspell.net/"
|
2019-12-21 06:32:18 +08:00
|
|
|
gnu_mirror_path = "aspell/dict/es/aspell6-es-1.11-2.tar.bz2"
|
2017-10-10 05:14:19 +08:00
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("GPL-2.0-or-later")
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version("1.11-2", sha256="ad367fa1e7069c72eb7ae37e4d39c30a44d32a6aa73cedccbd0d06a69018afcc")
|