From 753cb2e4f1cc791532fe2f381d1a284ddcefb8e1 Mon Sep 17 00:00:00 2001 From: itmodulo Date: Mon, 29 Jan 2024 18:41:47 +0100 Subject: [PATCH] Added hunspell translation --- srcpkgs/fractal/APKBUILD | 0 srcpkgs/hunspell-pl/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 srcpkgs/fractal/APKBUILD create mode 100644 srcpkgs/hunspell-pl/APKBUILD diff --git a/srcpkgs/fractal/APKBUILD b/srcpkgs/fractal/APKBUILD new file mode 100644 index 0000000..e69de29 diff --git a/srcpkgs/hunspell-pl/APKBUILD b/srcpkgs/hunspell-pl/APKBUILD new file mode 100644 index 0000000..558033f --- /dev/null +++ b/srcpkgs/hunspell-pl/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: ITmodulo +# Maintainer: ITmodulo +pkgname=hunspell-pl +pkgver=20240101 +pkgrel=0 +pkgdesc="Polish dictionary for Hunspell" +arch="noarch" +url='https://www.sjp.pl/slownik/ort/' +license="GPL-3.0-or-later" +makedepends="unzip enca" +depends="hunspell" +source="https://sjp.pl/sl/ort/sjp-myspell-pl-$pkgver.zip" +options="!check" # static files + +prepare() { + default_prepare + unzip pl_PL.zip + enca -L pl -x utf8 pl_PL.aff + enca -L pl -x utf8 pl_PL.dic + # fix encoding in .aff files + sed -i "s/SET ISO8859-2/SET UTF-8/" pl_PL.aff +} + +package() { + cd src/ + install -dm755 "$pkgdir"/usr/share/hunspell + install -m644 pl_PL.aff "$pkgdir"/usr/share/hunspell + install -m644 pl_PL.dic "$pkgdir"/usr/share/hunspell +} + +sha512sums=" +dabe85e7a15cab2b7af8a4e5d96eb996d3e01d8b3fc5b7fbf2d0bffd3af13dd7bf13b8457b2272c85ace56fd790de34935c2b178ab0d81b19a0ead4545fc1dd5 sjp-myspell-pl-20240101.zip +" \ No newline at end of file