core/aspell-es/PKGBUILD

23 lines
545 B
Bash
Raw Normal View History

#
# Platform Packages for Chakra, part of chakra-project.org
#
2012-07-30 19:49:14 +08:00
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
2010-03-14 23:48:48 +08:00
pkgname=aspell-es
pkgver=1.9a
pkgrel=1
pkgdesc="Spanish dictionary for aspell"
arch=('i686' 'x86_64')
url="http://aspell.net/"
license=('GPL')
depends=('aspell')
source=(ftp://ftp.gnu.org/gnu/aspell/dict/es/aspell6-es-$pkgver-1.tar.bz2)
md5sums=('473c980181e1930d075c6111a7a68e49')
build() {
cd $srcdir/aspell6-es-$pkgver-1
./configure || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}