2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 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)
|
|
|
|
|
2017-10-10 05:14:19 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2019-12-21 06:32:18 +08:00
|
|
|
class Aspell6En(AspellDictPackage, GNUMirrorPackage):
|
2017-10-10 05:14:19 +08:00
|
|
|
"""English (en) dictionary for aspell."""
|
|
|
|
|
|
|
|
homepage = "http://aspell.net/"
|
2019-12-21 06:32:18 +08:00
|
|
|
gnu_mirror_path = "aspell/dict/en/aspell6-en-2017.01.22-0.tar.bz2"
|
2017-10-10 05:14:19 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2017.01.22-0', sha256='93c73fae3eab5ea3ca6db3cea8770715a820f1b7d6ea2b932dd66a17f8fd55e1')
|