blob: 46e312e059969defe144adbb3b102289e2c923c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
DESCRIPTION = "SCOWL (Spell Checker Oriented Word Lists) is a collection of word lists split up in various sizes, and other categories, intended to be suitable for use in spell checkers. However, I am sure it will have numerous other uses as well."
HOMEPAGE = "http://wordlist.sourceforge.net/"
LICENSE = "GPL"
SRC_URI = "${SOURCEFORGE_MIRROR}/wordlist/scowl-6.tar.gz \
file://rules"
S = "${WORKDIR}/${PN}-${PV}"
do_compile() {
cp -f ${WORKDIR}/rules ${S}
oe_runmake -f rules build
}
do_install() {
install -d ${D}/${datadir}/dict
install ${S}/american-english ${D}/${datadir}/dict
install ${S}/british-english ${D}/${datadir}/dict
install ${S}/canadian-english ${D}/${datadir}/dict
}
PACKAGE_ARCH = "all"
PACKAGES = "wamerican wbritish wcanadian"
FILES = "${datadir}/dict/${DICTNAME}"
pkg_postinst() {
#!/bin/sh
if [ "x$D" != "x" ]; then
exit 1
fi
cd ${datadir}/dict
ln -sf ${DICTNAME} words
}
DICTNAME_wamerican = "american-english"
DICTNAME_wbritish = "british-english"
DICTNAME_wcanadian = "canadian-english"
|