mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
24 lines
561 B
Bash
24 lines
561 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
|
|
|
|
pkgname=aspell-es
|
|
pkgver=1.11
|
|
_pkgver=$pkgver-2
|
|
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.tar.bz2)
|
|
md5sums=('8406336a89c64e47e96f4153d0af70c4')
|
|
|
|
build() {
|
|
cd $srcdir/aspell6-es-$_pkgver
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|