1*4882a593Smuzhiyun# This recipe is a copy from the oe-core one. 2*4882a593Smuzhiyun# It has a lower and invalid version number in order not to be accidentally used by bitbake. 3*4882a593Smuzhiyun# It is used for tests that require overlayed recipe files. 4*4882a593Smuzhiyun 5*4882a593SmuzhiyunSUMMARY = "GNU Aspell spell-checker" 6*4882a593SmuzhiyunSECTION = "console/utils" 7*4882a593SmuzhiyunHOMEPAGE = "https://ftp.gnu.org/gnu/aspell/" 8*4882a593Smuzhiyun 9*4882a593SmuzhiyunLICENSE = "LGPL-2.0-only | LGPL-2.1-only" 10*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" 11*4882a593Smuzhiyun 12*4882a593SmuzhiyunSRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz" 13*4882a593SmuzhiyunSRC_URI[md5sum] = "e66a9c9af6a60dc46134fdacf6ce97d7" 14*4882a593SmuzhiyunSRC_URI[sha256sum] = "f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1" 15*4882a593Smuzhiyun 16*4882a593SmuzhiyunEXCLUDE_FROM_WORLD = "1" 17*4882a593Smuzhiyun 18*4882a593SmuzhiyunPACKAGECONFIG ??= "" 19*4882a593SmuzhiyunPACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses" 20*4882a593Smuzhiyun 21*4882a593SmuzhiyunPACKAGES += "libaspell libpspell libpspell-dev aspell-utils" 22*4882a593Smuzhiyun 23*4882a593SmuzhiyunFILES:${PN}-dbg += "${libdir}/aspell-0.60/.debu*" 24*4882a593SmuzhiyunFILES:libaspell = "${libdir}/libaspell.so.* ${libdir}/aspell*" 25*4882a593SmuzhiyunFILES:aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell ${bindir}/pre*" 26*4882a593SmuzhiyunFILES:${PN} = "${bindir}/aspell" 27*4882a593SmuzhiyunFILES:libpspell = "${libdir}/libpspell.so.*" 28*4882a593SmuzhiyunFILES:libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" 29*4882a593Smuzhiyun 30*4882a593SmuzhiyunARM_INSTRUCTION_SET:armv4 = "arm" 31*4882a593SmuzhiyunARM_INSTRUCTION_SET:armv5 = "arm" 32*4882a593SmuzhiyunARM_INSTRUCTION_SET:armv6 = "arm" 33*4882a593Smuzhiyun 34*4882a593Smuzhiyuninherit autotools gettext 35