mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:47:13 +08:00
28 lines
569 B
Bash
28 lines
569 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
|
|
|
|
pkgname=aspell-el
|
|
pkgver=0.08
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="Greek dictionary for aspell."
|
|
arch=('x86_64')
|
|
url="http://aspell.net/"
|
|
license=('GPL')
|
|
depends=('aspell')
|
|
source=(http://elspell.math.upatras.gr/files/aspell/aspell6-el-$pkgver-0.tar.bz2)
|
|
md5sums=('cf0e677c37ffb64e4b8ebe13acd233c7')
|
|
|
|
build() {
|
|
cd "$srcdir/aspell6-el-$pkgver-0"
|
|
./configure
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/aspell6-el-$pkgver-0"
|
|
make DESTDIR=$pkgdir install
|
|
}
|