mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 12:44:36 +08:00
28 lines
688 B
Bash
28 lines
688 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=2016.01.19
|
|
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=('18cf685153bea76566f63dc0ab45c391')
|
|
|
|
build() {
|
|
cd $srcdir/aspell6-en-$pkgver-0
|
|
./configure || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/aspell6-en-$pkgver-0
|
|
make DESTDIR=$pkgdir install || return 1
|
|
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE || return 1
|
|
}
|