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