blob: 87479bf4c5ff3b9ad2007b8aeec0cd636e9c9888 (
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
46
47
48
|
# $Id: PKGBUILD 215101 2014-06-14 04:25:55Z fyan $
# Maintainer:
pkgname=aspell-pt
_pkgverPT=20140513
_pkgverBR=20090702
pkgver=$_pkgverPT
pkgrel=1
pkgdesc="Portuguese and Brazilian Portuguese dictionary for aspell"
arch=('i686' 'x86_64')
url="http://aspell.net/"
license=('GPL2')
depends=('aspell')
conflicts=('aspell-pt_br')
replaces=('aspell-pt_br')
source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-$_pkgverPT.tar.bz2
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-preao-$_pkgverPT.tar.bz2)
sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
'9b74f0bbdd9afa00cf6b6e86f8be065bc062dfca'
'341fe147c4454062249736da360012b4247b4fee')
build() {
cd aspell6-pt_BR-$_pkgverBR-0
./configure
make
cd ../aspell6-pt_PT-$_pkgverPT-0
./configure
make
cd ../aspell6-pt_PT-preao-$_pkgverPT-0
./configure
make
}
package() {
cd aspell6-pt_BR-$_pkgverBR-0
make DESTDIR="$pkgdir" install
cd ../aspell6-pt_PT-$_pkgverPT-0
make DESTDIR="$pkgdir" install
cd ../aspell6-pt_PT-preao-$_pkgverPT-0
make DESTDIR="$pkgdir" install
echo "add pt_BR.multi" > "$pkgdir"/usr/lib/aspell-0.60/brasileiro.alias
}
|