mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
557 B
Bash
21 lines
557 B
Bash
# Maintainer: Simo Leone <simo@archlinux.org>
|
|
# Contributor: Simo Leone <neotuli@gmail.com>
|
|
|
|
pkgname=aspell-fi
|
|
pkgver=0.7
|
|
pkgrel=2
|
|
pkgdesc="Finnish dictionary for aspell"
|
|
arch=('arm')
|
|
url="http://aspell.net"
|
|
license=('GPL2')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-$pkgver-0.tar.bz2)
|
|
md5sums=('6d1032116982c0efab1af8fce83259c0')
|
|
sha1sums=('10235c88220f7b914a1d8af7b4d4e8e26b5d7c76')
|
|
|
|
build() {
|
|
cd "$srcdir/aspell6-fi-$pkgver-0"
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|