mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
577 B
Bash
21 lines
577 B
Bash
|
# Maintainer: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
|
||
|
# Contributor: Arkadiusz Laczynski <alaczynski@gmail.com>
|
||
|
|
||
|
pkgname=aspell-pl
|
||
|
pkgver=20061121
|
||
|
pkgrel=1
|
||
|
pkgdesc="Polish dictionary for aspell"
|
||
|
license=('GPL' 'LGPL' 'MPL')
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('aspell')
|
||
|
url="http://aspell.sourceforge.net/"
|
||
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/pl/aspell6-pl-6.0_$pkgver-0.tar.bz2)
|
||
|
md5sums=('3139a69a1bd9ccb1d853d30aa024fc2b')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/aspell6-pl-6.0_$pkgver-0
|
||
|
./configure
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|