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 5SUMMARY = "GNU Aspell spell-checker" 6SECTION = "console/utils" 7HOMEPAGE = "https://ftp.gnu.org/gnu/aspell/" 8 9LICENSE = "LGPLv2 | LGPLv2.1" 10LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" 11 12SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz" 13SRC_URI[md5sum] = "e66a9c9af6a60dc46134fdacf6ce97d7" 14SRC_URI[sha256sum] = "f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1" 15 16EXCLUDE_FROM_WORLD = "1" 17 18PACKAGECONFIG ??= "" 19PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses" 20 21PACKAGES += "libaspell libpspell libpspell-dev aspell-utils" 22 23FILES:${PN}-dbg += "${libdir}/aspell-0.60/.debu*" 24FILES:libaspell = "${libdir}/libaspell.so.* ${libdir}/aspell*" 25FILES:aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell ${bindir}/pre*" 26FILES:${PN} = "${bindir}/aspell" 27FILES:libpspell = "${libdir}/libpspell.so.*" 28FILES:libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" 29 30ARM_INSTRUCTION_SET:armv4 = "arm" 31ARM_INSTRUCTION_SET:armv5 = "arm" 32ARM_INSTRUCTION_SET:armv6 = "arm" 33 34inherit autotools gettext 35