aports/main/hunspell-pt-br/APKBUILD
2023-12-07 14:14:56 +00:00

34 lines
946 B
Text

# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=hunspell-pt-br
pkgver=20131017
pkgrel=2
pkgdesc="Portuguese (Brazil) hunspell dictionaries"
url="https://pt-br.libreoffice.org/"
arch="noarch"
license="LGPL-3.0-only AND MPL-1.1"
source="https://pt-br.libreoffice.org/assets/Uploads/PT-BR-Documents/VERO/VeroptBRV320AOC.oxt
"
options="!check"
unpack() {
msg "Unpacking sources..."
mkdir -p "$builddir"
cd "$builddir"
for u in $source; do
local s="$SRCDEST/$(filename_from_uri $u)"
case "$s" in
*.oxt) unzip $s ;;
esac
done
}
package() {
install -dm755 $pkgdir/usr/share/hunspell
install -m644 pt_BR.dic pt_BR.aff $pkgdir/usr/share/hunspell
# docs
install -dm755 $pkgdir/usr/share/doc/$pkgname
install -m644 README_pt_BR.txt $pkgdir/usr/share/doc/$pkgname
}
sha512sums="217d25ecc532c4b3386593cea4d430094ec4badb81e12648d3ca87a7f2e29243a94028a1287ff50db4532c6e1a33e52a0839fd0d45ae8c167bc89df940209b14 VeroptBRV320AOC.oxt"