diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/hunspell/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/hunspell/PKGBUILD')
-rw-r--r-- | extra/hunspell/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/hunspell/PKGBUILD b/extra/hunspell/PKGBUILD new file mode 100644 index 000000000..e73e0e875 --- /dev/null +++ b/extra/hunspell/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 108140 2011-01-30 10:19:56Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> +# Contributor: Hussam Al-Tayeb <ht990332@gmail.com> + +pkgname=hunspell +pkgver=1.2.15 +pkgrel=1 +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') +optdepends=('perl: for ispellaff2myspell') +options=('!libtool') +source=(http://downloads.sourceforge.net/hunspell/hunspell-$pkgver.tar.gz) +md5sums=('3fa2644b8d48cae48cb0967ffba91c9d') + +build() { + cd "$srcdir/hunspell-$pkgver" + ./configure --prefix=/usr --disable-static \ + --with-ui --with-readline --with-experimental + make +} + +package() { + cd "$srcdir/hunspell-$pkgver" + make DESTDIR="$pkgdir" install +} |