mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:07:14 +08:00
27 lines
713 B
Bash
27 lines
713 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-de
|
|
pkgver=20030222
|
|
pkgrel=2
|
|
pkgdesc="German dictionary for aspell"
|
|
arch=('i686' 'x86_64')
|
|
url="http://aspell.net/"
|
|
license=('GPL2')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/de/aspell6-de-$pkgver-1.tar.bz2)
|
|
md5sums=('5950c5c8a36fc93d4d7616591bace6a6')
|
|
|
|
build() {
|
|
cd $srcdir/aspell6-de-$pkgver-1
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|