summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f6866559a46ac1073c6cdfe563b4d0f24c6e3a04 (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
38
39
40
41
42
43
44
# Maintainer: Moon Sungjoon <sumoon at seoulsaram dot com>

pkgname=hunspell-ko
pkgver=0.7.92
pkgrel=5
pkgdesc="Korean hunspell dictionary"
arch=('any')
url='https://github.com/spellcheck-ko/hunspell-dict-ko'
license=('GPL3')
makedepends=('qt5-webengine')
optdepends=('hunspell: the spell checking libraries and apps')
source=(https://github.com/spellcheck-ko/hunspell-dict-ko/releases/download/${pkgver}/ko-aff-dic-${pkgver}.zip)
sha512sums=('300e574c7221841801f0d4b114abaa3b15196b69cb25f98ed784c820d125bd60e6fe6ca6cc76dca07de9382e957acd4bc337fa87b84f809b13f703ebe47baa45')

package() {
	cd "$srcdir/ko-aff-dic-$pkgver" 

	# Remove easter egg for convert to qt webengine dictionary (very long word)
	# It's temp, because this line is ugly
	sed -i '14265d' ko.dic

	install -dm755 "$pkgdir"/usr/share/hunspell
	install -m644 ko.dic "$pkgdir"/usr/share/hunspell/ko_KR.dic
	install -m644 ko.aff "$pkgdir"/usr/share/hunspell/ko_KR.aff

	# myspell symlinks
	install -dm755 "${pkgdir}"/usr/share/myspell/dicts
	pushd "$pkgdir"/usr/share/myspell/dicts
		for dict in "${pkgdir}"/usr/share/hunspell/*; do
			ln -sv /usr/share/hunspell/$(basename $dict) .
		done
	popd

	# Install webengine dictionaries
	install -d "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/
	for _file in "$pkgdir"/usr/share/hunspell/*.dic; do
		_filename="$(basename "$_file")"
		qwebengine_convert_dict "$_file" "$pkgdir"/usr/share/qt/qtwebengine_dictionaries/${_filename/\.dic/\.bdic}
	done
	
	# licenses
	install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE
	#install -Dm644 LICENSE.GPL-3 $pkgdir/usr/share/licenses/$pkgname/LICENSE.GPL-3
}