blob: 1e84688755518ca068dd34794c41c706ce729e21 (
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
|
# Maintainer: Mauro Santos <registo.mailling@gmail.com>
pkgname='hunspell-pt_pt'
_pkgname='hunspell-pt_PT'
pkgver=20220621
pkgrel=1
pkgdesc="Portuguese (European, post-orthographic agreement) hunspell dictionaries"
arch=('any')
url="https://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/"
license=('GPL' 'LGPL' 'MPL')
optdepends=('hunspell: the spell checking libraries and apps')
source=("https://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/$_pkgname-$pkgver.tar.gz")
sha256sums=('a310abeeb52b706febae0392f44f9541bbfb1b75f3f290c615ade25fa1ccd351')
package() {
cd $srcdir/$_pkgname-$pkgver
install -dm755 $pkgdir/usr/share/hunspell
install -m644 pt_PT.* $pkgdir/usr/share/hunspell
# the symlinks
install -dm755 $pkgdir/usr/share/myspell/dicts
pushd $pkgdir/usr/share/myspell/dicts
for file in $pkgdir/usr/share/hunspell/*; do
ln -sv /usr/share/hunspell/$(basename ${file}) .
done
popd
# docs
install -dm755 $pkgdir/usr/share/doc/$pkgname
install -m644 README_pt_PT.txt $pkgdir/usr/share/doc/$pkgname
# licences
install -dm755 $pkgdir/usr/share/licenses/$pkgname/
install -m644 COPYING $pkgdir/usr/share/licenses/$pkgname
}
|