summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 21e1e00b439689ea38f93bba258bab6deaf875bb (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
# Maintainer: katt <magunasu.b97@gmail.com>
# Contributor: jtts
# Contributor: Oscar Carlsson <oscar.carlsson (at) gmail.com>

pkgname=hunspell-sv
pkgver=2.42
pkgrel=1
epoch=1
pkgdesc='Swedish dictionaries for Hunspell'
arch=(any)
url='https://extensions.libreoffice.org/en/extensions/show/swedish-spelling-dictionary-den-stora-svenska-ordlistan'
license=(LGPL3)
source=(https://extensions.libreoffice.org/assets/downloads/z/ooo-swedish-dict-"${pkgver/./-}".oxt)
sha256sums=('6f8c62461eb4c2cfe81628094c74ab6511918520047742f14e23dd440b99f45f')

package() {
  cd dictionaries
  install -Dm644 -t "${pkgdir}"/usr/share/hunspell \
    sv_SE.dic \
    sv_SE.aff \
    sv_FI.dic \
    sv_FI.aff

  install -dm755 "${pkgdir}"/usr/share/myspell/dicts
  ln -svt "$pkgdir"/usr/share/myspell/dicts \
    /usr/share/hunspell/sv_SE.dic \
    /usr/share/hunspell/sv_SE.aff \
    /usr/share/hunspell/sv_FI.dic \
    /usr/share/hunspell/sv_FI.aff
}