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" 7 8LICENSE = "LGPLv2 | LGPLv2.1" 9LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" 10 11PR = "r1" 12 13SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz" 14SRC_URI[md5sum] = "e66a9c9af6a60dc46134fdacf6ce97d7" 15SRC_URI[sha256sum] = "f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1" 16 17EXCLUDE_FROM_WORLD = "1" 18 19PACKAGECONFIG ??= "" 20PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses" 21 22PACKAGES += "libaspell libpspell libpspell-dev aspell-utils" 23 24FILES_${PN}-dbg += "${libdir}/aspell-0.60/.debu*" 25FILES_libaspell = "${libdir}/libaspell.so.* ${libdir}/aspell*" 26FILES_aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell ${bindir}/pre*" 27FILES_${PN} = "${bindir}/aspell" 28FILES_libpspell = "${libdir}/libpspell.so.*" 29FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" 30 31ARM_INSTRUCTION_SET_armv4 = "arm" 32ARM_INSTRUCTION_SET_armv5 = "arm" 33ARM_INSTRUCTION_SET_armv6 = "arm" 34 35inherit autotools gettext 36