mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
512 B
Bash
23 lines
512 B
Bash
# $Id:
|
|
# Maintainer: Jaroslav Lichtblau <tu@dragonlord.cz>
|
|
# Contributor: Michal Karas <largon@largon.net>
|
|
|
|
pkgname=aspell-cs
|
|
pkgver=20040614
|
|
pkgrel=1
|
|
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 || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|