mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
24 lines
724 B
Bash
24 lines
724 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
|
|
|
|
pkgname=aspell-en
|
|
pkgver=7.1
|
|
pkgrel=1
|
|
pkgdesc="English dictionary for aspell"
|
|
arch=('i686' 'x86_64')
|
|
url="http://aspell.net/"
|
|
license=('custom')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$pkgver-0.tar.bz2)
|
|
md5sums=('beba5e8f3afd3ed1644653bb685b2dfb')
|
|
|
|
build() {
|
|
cd $srcdir/aspell6-en-$pkgver-0
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE || return 1
|
|
}
|