PKGBUILDs/community/aspell-pt_br/PKGBUILD
2009-10-09 21:15:33 -05:00

20 lines
492 B
Bash

# Maintainer: Hugo Doria <hugodoria@gmail.com>
pkgname=aspell-pt_br
pkgver=20090702
pkgrel=1
pkgdesc="Brazilian Portuguese dictionary for aspell"
arch=('i686' 'x86_64')
depends=('aspell')
license=('LGPL')
url="http://aspell.sourceforge.net/"
source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-${pkgver}-0.tar.bz2)
md5sums=('e082a8956882eb94a67c12e1b8c4a324')
build() {
cd ${srcdir}/aspell6-pt_BR-${pkgver}-0
./configure
make || return 1
make DESTDIR=${pkgdir} install
}