blob: 78dba85a98153b4a4c40ac25a4d4e3edfb441847 (
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
|
# Contributor (AUR): Robson R S Peixoto <robsonpeixoto@gmail.com>
# Maintainer (AUR): Davi da Silva Böger <dsboger@gmail.com>
# Contributor: André Silva <emulatorman@hyperbola.info>
# parabola changes and rationale:
# no changes.
pkgname=hyphen-pt-br
pkgver=213
pkgrel=3.1
pkgdesc="Portuguese (Brazil) hyphenation rules"
arch=('any')
url="http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ortografico/"
license=('LGPL-2.1')
depends=('hyphen')
source=(http://pt-br.libreoffice.org/assets/Uploads/PT-BR-Documents/VERO/hyphptBR-${pkgver}.zip)
md5sums=('498a4ec7976a814f7411f5540cbedece')
package() {
cd ${srcdir}
install -D -m644 hyph_pt_BR.dic $pkgdir/usr/share/hyphen/hyph_pt_BR.dic
mkdir -p $pkgdir/usr/share/myspell/dicts/
cd $pkgdir/usr/share/myspell/dicts/
ln -s /usr/share/hyphen/hyph_pt_BR.dic hyph_pt_BR.dic
}
# vim:set ts=2 sw=2 et:
|