2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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 *
|
|
|
|
|
|
|
|
|
|
|
|
# See also: AspellDictPackage
|
|
|
|
class Aspell(AutotoolsPackage):
|
|
|
|
"""GNU Aspell is a Free and Open Source spell checker designed to
|
|
|
|
eventually replace Ispell."""
|
|
|
|
|
|
|
|
homepage = "http://aspell.net/"
|
|
|
|
url = "https://ftpmirror.gnu.org/aspell/aspell-0.60.6.1.tar.gz"
|
|
|
|
|
|
|
|
extendable = True # support activating dictionaries
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.60.6.1', sha256='f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1')
|
2017-10-10 05:14:19 +08:00
|
|
|
|
2018-04-27 04:19:52 +08:00
|
|
|
patch('darwin.patch', when='platform=darwin')
|
2019-01-01 06:13:03 +08:00
|
|
|
patch('issue-519.patch', when='@:0.60.6.1')
|