mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
492 B
Bash
21 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
|
||
|
}
|
||
|
|