blob: 39b55f4ff2608b6798b5dd03fdf51a5686db6db5 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "GNU Aspell spell-checker"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06002
3DESCRIPTION = "Spell checker designed to eventually replace Ispell. \
4It can either be used as a library or as an independent spell checker. \
5Its main feature is that it does a superior job of suggesting possible \
6replacements for a misspelled word than just about any other spell \
7checker out there for the English language."
8
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009SECTION = "console/utils"
10
Andrew Geissler90fd73c2021-03-05 15:25:55 -060011HOMEPAGE = "http://aspell.net/"
12
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000013LICENSE = "LGPL-2.0-only | LGPL-2.1-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
15
Patrick Williams213cb262021-08-07 19:21:33 -050016SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz \
17 file://CVE-2019-25051.patch \
18"
Brad Bishop64c979e2019-11-04 13:55:29 -050019SRC_URI[md5sum] = "012fa9209203ae4e5a61c2a668fd10e3"
20SRC_URI[sha256sum] = "f9b77e515334a751b2e60daab5db23499e26c9209f5e7b7443b05235ad0226f2"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
22PACKAGECONFIG ??= ""
23PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses"
24
25PACKAGES += "libaspell libpspell aspell-utils"
26
Patrick Williams213cb262021-08-07 19:21:33 -050027RDEPENDS:${PN}-utils += "perl"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
Patrick Williams213cb262021-08-07 19:21:33 -050029FILES:libaspell = "${libdir}/libaspell.so.* ${libdir}/aspell*"
30FILES:aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell ${bindir}/pre*"
31FILES:${PN} = "${bindir}/aspell"
32FILES:libpspell = "${libdir}/libpspell.so.*"
33FILES:${PN}-dev += "${bindir}/pspell-config"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
Patrick Williams213cb262021-08-07 19:21:33 -050035ARM_INSTRUCTION_SET:armv4 = "arm"
36ARM_INSTRUCTION_SET:armv5 = "arm"
37ARM_INSTRUCTION_SET:armv6 = "arm"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080038
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039inherit autotools-brokensep gettext texinfo binconfig-disabled
40
41BINCONFIG = "${bindir}/pspell-config"