mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
27 lines
772 B
Bash
27 lines
772 B
Bash
# Maintainer: Simo Leone <simo@archlinux.org>
|
|
# Contributor: jlvsimoes <jlvsimoes@oninet.pt>
|
|
|
|
pkgname=aspell-pt
|
|
pkgver=20080707
|
|
pkgrel=1
|
|
pkgdesc="Portuguese dictionary for aspell"
|
|
arch=('arm')
|
|
url="http://aspell.net/"
|
|
license=('LGPL' 'GPL')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-20080707-0.tar.bz2
|
|
ftp://ftp.gnu.org/gnu/aspell/dict/pt_PT/aspell6-pt_PT-20070510-0.tar.bz2)
|
|
md5sums=('0c99d5c143fc15a951a1bc234230590c'
|
|
'a54267ce8f91de6e6a1baf1e8048cba0')
|
|
|
|
build() {
|
|
cd $srcdir/aspell6-pt_BR-20080707-0
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
|
|
cd $srcdir/aspell6-pt_PT-20070510-0
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|