mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 02:44:37 +08:00
20 lines
470 B
Bash
20 lines
470 B
Bash
|
# Maintainer: Manuel Tortosa <manutortosa@gmail.com>
|
||
|
|
||
|
pkgname=aspell-ca
|
||
|
pkgver=2.1.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Catalan dictionary for aspell"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://aspell.net/"
|
||
|
license=('GPL')
|
||
|
depends=('aspell')
|
||
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-$pkgver-1.tar.bz2)
|
||
|
md5sums=(153d26f724866909c6faf49eecefe8b3)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/aspell6-ca-$pkgver-1
|
||
|
./configure || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|