PKGBUILDs/extra/aspell-pt/PKGBUILD

28 lines
831 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 33724 2009-04-04 18:31:29Z eric $
# Maintainer: Simo Leone <simo@archlinux.org>
# Contributor: jlvsimoes <jlvsimoes@oninet.pt>
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
}