PKGBUILDs/community/aspell-pt_br/PKGBUILD

21 lines
492 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# 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
}