summaryrefslogtreecommitdiffstats
path: root/recipes/hunspell
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@digia.com>2014-09-23 16:34:17 +0300
committerSamuli Piippo <samuli.piippo@digia.com>2014-09-25 12:04:19 +0300
commitcd5a703ddf4a351a39d9728e741b210e54c74145 (patch)
tree237c494f86b4867a5abc258b98f08112928fd060 /recipes/hunspell
parenta1af90f3e900e5fd93fdedf74bafd2269f92ec45 (diff)
downloadmeta-boot2qt-cd5a703ddf4a351a39d9728e741b210e54c74145.tar.gz
Use libreoffice repo for hunspell dictionaries
One of the URL no longer worked, so using libreoffice for all of the hunspell dictionaries. Change-Id: Ie8c58125073d4d0b444e91e05b08cea1dbc94ce9 Reviewed-by: Rainer Keller <rainer.keller@digia.com>
Diffstat (limited to 'recipes/hunspell')
-rw-r--r--recipes/hunspell/hunspell_1.3.2.bb17
1 files changed, 7 insertions, 10 deletions
diff --git a/recipes/hunspell/hunspell_1.3.2.bb b/recipes/hunspell/hunspell_1.3.2.bb
index beb071d..c28d762 100644
--- a/recipes/hunspell/hunspell_1.3.2.bb
+++ b/recipes/hunspell/hunspell_1.3.2.bb
@@ -25,16 +25,13 @@ LICENSE = "LGPLv2"
25LIC_FILES_CHKSUM = "file://${WORKDIR}/hunspell-${PV}/COPYING;md5=ed3a37b3ba6d6be3e08ab45987cf1b88" 25LIC_FILES_CHKSUM = "file://${WORKDIR}/hunspell-${PV}/COPYING;md5=ed3a37b3ba6d6be3e08ab45987cf1b88"
26 26
27SRC_URI = "http://downloads.sourceforge.net/hunspell/hunspell-${PV}.tar.gz;name=hunspell \ 27SRC_URI = "http://downloads.sourceforge.net/hunspell/hunspell-${PV}.tar.gz;name=hunspell \
28 http://ftp.halifax.rwth-aachen.de/gentoo/distfiles/myspell-en_GB-20081002.zip;name=dict-en \ 28 git://gitorious.org/libreoffice/dictionaries.git;branch=libreoffice-4-3-2;name=dictionaries \
29 http://downloads.sourceforge.net/project/ayaspell/hunspell-ar/20080110/hunspell-ar_20080110.tar.gz;name=dict-ar \
30 " 29 "
31 30
32SRC_URI[hunspell.md5sum] = "3121aaf3e13e5d88dfff13fb4a5f1ab8" 31SRC_URI[hunspell.md5sum] = "3121aaf3e13e5d88dfff13fb4a5f1ab8"
33SRC_URI[hunspell.sha256sum] = "b4edd4a4ee944cb9f485b35473e46b729ed768e9d24da8e78e4c4c6ca56addbd" 32SRC_URI[hunspell.sha256sum] = "b4edd4a4ee944cb9f485b35473e46b729ed768e9d24da8e78e4c4c6ca56addbd"
34SRC_URI[dict-en.md5sum] = "6fb885d57899c3e6aa2b27f3510deb37" 33# using branch libreoffice-4.3.2 for dictionaries
35SRC_URI[dict-en.sha256sum] = "f4b43083923e2998298fd270a8a9f9ed570f4fbebeaa46ce5f1788b76920308b" 34SRCREV_dictionaries = "aa497b3c345133a1dc180dfb95dd1b3677b92afa"
36SRC_URI[dict-ar.md5sum] = "69990932920960eb765fd35883640124"
37SRC_URI[dict-ar.sha256sum] = "88d9eebbe05de29d17f4420ebaec9249441ce01d61b5d6c7ecba040e250e2d91"
38 35
39PR = "r0" 36PR = "r0"
40 37
@@ -47,9 +44,9 @@ FILES_${PN}-dicts = "${datadir}/hunspell"
47do_install_append() { 44do_install_append() {
48 install -m 0755 -d ${D}${datadir}/hunspell 45 install -m 0755 -d ${D}${datadir}/hunspell
49 46
50 install -m 0755 ${WORKDIR}/hunspell-ar_20080110/ar.dic ${D}${datadir}/hunspell/ar_EG.dic 47 install -m 0755 ${WORKDIR}/git/ar/ar.dic ${D}${datadir}/hunspell/ar_EG.dic
51 install -m 0755 ${WORKDIR}/hunspell-ar_20080110/ar.aff ${D}${datadir}/hunspell/ar_EG.aff 48 install -m 0755 ${WORKDIR}/git/ar/ar.aff ${D}${datadir}/hunspell/ar_EG.aff
52 49
53 install -m 0755 ${WORKDIR}/en_GB.dic ${D}${datadir}/hunspell 50 install -m 0755 ${WORKDIR}/git/en/en_GB.dic ${D}${datadir}/hunspell
54 install -m 0755 ${WORKDIR}/en_GB.aff ${D}${datadir}/hunspell 51 install -m 0755 ${WORKDIR}/git/en/en_GB.aff ${D}${datadir}/hunspell
55} 52}