1*eb8dc403SDave Cobbley# This recipe is a copy from the oe-core one. 2*eb8dc403SDave Cobbley# It has a lower and invalid version number in order not to be accidentally used by bitbake. 3*eb8dc403SDave Cobbley# It is used for tests that require overlayed recipe files. 4*eb8dc403SDave Cobbley 5*eb8dc403SDave CobbleySUMMARY = "GNU Aspell spell-checker" 6*eb8dc403SDave CobbleySECTION = "console/utils" 7*eb8dc403SDave Cobbley 8*eb8dc403SDave CobbleyLICENSE = "LGPLv2 | LGPLv2.1" 9*eb8dc403SDave CobbleyLIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" 10*eb8dc403SDave Cobbley 11*eb8dc403SDave CobbleyPR = "r1" 12*eb8dc403SDave Cobbley 13*eb8dc403SDave CobbleySRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz" 14*eb8dc403SDave CobbleySRC_URI[md5sum] = "e66a9c9af6a60dc46134fdacf6ce97d7" 15*eb8dc403SDave CobbleySRC_URI[sha256sum] = "f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1" 16*eb8dc403SDave Cobbley 17*eb8dc403SDave CobbleyEXCLUDE_FROM_WORLD = "1" 18*eb8dc403SDave Cobbley 19*eb8dc403SDave CobbleyPACKAGECONFIG ??= "" 20*eb8dc403SDave CobbleyPACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses" 21*eb8dc403SDave Cobbley 22*eb8dc403SDave CobbleyPACKAGES += "libaspell libpspell libpspell-dev aspell-utils" 23*eb8dc403SDave Cobbley 24*eb8dc403SDave CobbleyFILES_${PN}-dbg += "${libdir}/aspell-0.60/.debu*" 25*eb8dc403SDave CobbleyFILES_libaspell = "${libdir}/libaspell.so.* ${libdir}/aspell*" 26*eb8dc403SDave CobbleyFILES_aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell ${bindir}/pre*" 27*eb8dc403SDave CobbleyFILES_${PN} = "${bindir}/aspell" 28*eb8dc403SDave CobbleyFILES_libpspell = "${libdir}/libpspell.so.*" 29*eb8dc403SDave CobbleyFILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" 30*eb8dc403SDave Cobbley 31*eb8dc403SDave CobbleyARM_INSTRUCTION_SET = "arm" 32*eb8dc403SDave Cobbleyinherit autotools gettext 33