mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
28 lines
796 B
Bash
28 lines
796 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=aspell-en
|
|
pkgver=6.0
|
|
pkgrel=2
|
|
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=('16449e0a266e1ecc526b2f3cd39d4bc2')
|
|
|
|
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
|
|
}
|