2010-09-03 07:39:27 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=aspell-pt
|
|
|
|
pkgver=20080707
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Portuguese dictionary for aspell"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
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
|
|
|
|
}
|