mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
514 B
Bash
20 lines
514 B
Bash
# Maintainer: Simo Leone <simo@archlinux.org>
|
|
# Contributor: Eric Johnson <eric@coding-zone.com>
|
|
|
|
pkgname=aspell-it
|
|
pkgver=2.2_20050523
|
|
pkgrel=1
|
|
pkgdesc="Italian dictionary for aspell"
|
|
arch=('arm')
|
|
url="http://aspell.net/"
|
|
license=('GPL2')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/it/aspell6-it-$pkgver-0.tar.bz2)
|
|
md5sums=('b1217299a0b67d1e121494d7ec18a88d')
|
|
|
|
build() {
|
|
cd $srcdir/aspell6-it-$pkgver-0
|
|
./configure || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|