mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
30 lines
547 B
Bash
30 lines
547 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=aspell-cs
|
|
pkgver=20040614
|
|
pkgrel=2
|
|
pkgdesc="Czech dictionary for aspell"
|
|
arch=('i686' 'x86_64')
|
|
url="http://aspell.net/"
|
|
license=('GPL')
|
|
depends=('aspell')
|
|
source=("ftp://ftp.gnu.org/gnu/aspell/dict/cs/aspell6-cs-$pkgver-1.tar.bz2")
|
|
md5sums=('50f0c2b7b6fcfe47bb647ad8993d2fe8')
|
|
|
|
build() {
|
|
cd "$srcdir"/aspell6-cs-$pkgver-1
|
|
|
|
./configure
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/aspell6-cs-$pkgver-1
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|