blob: 61a06e21da03a72383e293f809bc044ec6efa258 (
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-preao'
_pkgname='hunspell-pt_PT-preao'
pkgver=20220621
pkgrel=1
pkgdesc="Portuguese (European, pre-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=('ddfe261e867f0c5489ec06f2d83f390b28e9631d667e88a33670b6ce755b4cf5')
package() {
cd $srcdir/$_pkgname-$pkgver
install -dm755 $pkgdir/usr/share/hunspell
install -m644 pt_PT-preao.* $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
}
|