mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
747 B
Bash
23 lines
747 B
Bash
# $Id: PKGBUILD 53987 2009-10-04 21:15:30Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: Hussam Al-Tayeb <ht990332@gmail.com>
|
|
|
|
pkgname=hunspell
|
|
pkgver=1.2.8
|
|
pkgrel=2
|
|
pkgdesc="Spell checker and morphological analyzer library and program"
|
|
arch=('i686' 'x86_64')
|
|
url="http://hunspell.sourceforge.net/"
|
|
license=('GPL' 'LGPL' 'MPL')
|
|
depends=('gcc-libs' 'readline')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/hunspell/hunspell-$pkgver.tar.gz)
|
|
md5sums=('1177af54a09e320d2c24015f29c3a93e')
|
|
|
|
build() {
|
|
cd "$srcdir/hunspell-$pkgver"
|
|
./configure --prefix=/usr --disable-static \
|
|
--with-ui --with-readline --with-experimental || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|