blob: 1f2faee5a4aeefe2490d598c2e45a87e20cee25b (
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
45
|
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=hunspell-pt-br
pkgver=20131017
pkgrel=0
pkgdesc="Portuguese (Brazil) hunspell dictionaries"
url="http://pt-br.libreoffice.org/"
arch="noarch"
license="LGPLv3 MPL"
depends=""
makedepends=""
source="http://pt-br.libreoffice.org/assets/Uploads/PT-BR-Documents/VERO/VeroptBRV320AOC.oxt
"
_builddir="$srcdir"/$pkgname-$pkgver
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
}
build() {
:
}
package() {
cd "$_builddir"
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
}
md5sums="9a9ac174c401406604bfcf101de2a7ba VeroptBRV320AOC.oxt"
sha256sums="78bac9ed27bf1b23666e240bc3809b9520004f14885423580a029771032bff54 VeroptBRV320AOC.oxt"
sha512sums="217d25ecc532c4b3386593cea4d430094ec4badb81e12648d3ca87a7f2e29243a94028a1287ff50db4532c6e1a33e52a0839fd0d45ae8c167bc89df940209b14 VeroptBRV320AOC.oxt"
|