mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
563 B
Bash
22 lines
563 B
Bash
|
# $Id: PKGBUILD 33712 2009-04-04 18:20:48Z eric $
|
|||
|
# Maintainer: Simo Leone <simo@archlinux.org>
|
|||
|
# Contributor: Juan Pablo Le<4C>n <jp_leon@gmx.net>
|
|||
|
|
|||
|
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
|
|||
|
}
|