Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # This recipe is a copy from the oe-core one. |
| 2 | # It has a lower and invalid version number in order not to be accidentally used by bitbake. |
| 3 | # It is used for tests that require overlayed recipe files. |
| 4 | |
| 5 | SUMMARY = "GNU Aspell spell-checker" |
| 6 | SECTION = "console/utils" |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 7 | HOMEPAGE = "https://ftp.gnu.org/gnu/aspell/" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 | |
| 9 | LICENSE = "LGPLv2 | LGPLv2.1" |
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" |
| 11 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 12 | SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz" |
| 13 | SRC_URI[md5sum] = "e66a9c9af6a60dc46134fdacf6ce97d7" |
| 14 | SRC_URI[sha256sum] = "f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1" |
| 15 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 16 | EXCLUDE_FROM_WORLD = "1" |
| 17 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 18 | PACKAGECONFIG ??= "" |
| 19 | PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses" |
| 20 | |
| 21 | PACKAGES += "libaspell libpspell libpspell-dev aspell-utils" |
| 22 | |
| 23 | FILES_${PN}-dbg += "${libdir}/aspell-0.60/.debu*" |
| 24 | FILES_libaspell = "${libdir}/libaspell.so.* ${libdir}/aspell*" |
| 25 | FILES_aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell ${bindir}/pre*" |
| 26 | FILES_${PN} = "${bindir}/aspell" |
| 27 | FILES_libpspell = "${libdir}/libpspell.so.*" |
| 28 | FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" |
| 29 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 30 | ARM_INSTRUCTION_SET_armv4 = "arm" |
| 31 | ARM_INSTRUCTION_SET_armv5 = "arm" |
| 32 | ARM_INSTRUCTION_SET_armv6 = "arm" |
| 33 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 34 | inherit autotools gettext |