diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-14 05:23:14 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-14 05:23:14 (GMT) |
commit | 7f188658c1e6a9eaf4d9644bc725c78c3f6cc5c6 (patch) | |
tree | 06fe118c0a42902b81ba2ce2b311e0c865b0aa3f /abs/extra-testing/hunspell | |
parent | 95cf6290d2172b876965de46d78db8ac5d6f6192 (diff) | |
download | linhes_pkgbuild-7f188658c1e6a9eaf4d9644bc725c78c3f6cc5c6.zip linhes_pkgbuild-7f188658c1e6a9eaf4d9644bc725c78c3f6cc5c6.tar.gz linhes_pkgbuild-7f188658c1e6a9eaf4d9644bc725c78c3f6cc5c6.tar.bz2 |
Various packages needed for deps of Miro.
Diffstat (limited to 'abs/extra-testing/hunspell')
-rw-r--r-- | abs/extra-testing/hunspell/ChangeLog | 6 | ||||
-rw-r--r-- | abs/extra-testing/hunspell/PKGBUILD | 23 |
2 files changed, 29 insertions, 0 deletions
diff --git a/abs/extra-testing/hunspell/ChangeLog b/abs/extra-testing/hunspell/ChangeLog new file mode 100644 index 0000000..dcb3a2a --- /dev/null +++ b/abs/extra-testing/hunspell/ChangeLog @@ -0,0 +1,6 @@ +2008-12-02 Alexander Fehr <pizzapunk gmail com> + + * hunspell-1.2.8-1: + New upstream release. + New maintainer. + Added ChangeLog. diff --git a/abs/extra-testing/hunspell/PKGBUILD b/abs/extra-testing/hunspell/PKGBUILD new file mode 100644 index 0000000..2db38c2 --- /dev/null +++ b/abs/extra-testing/hunspell/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 20746 2008-12-06 14:17:50Z alexanderf $ +# Maintainer: Alexander Fehr <pizzapunk gmail com> +# Contributor: Hussam Al-Tayeb <ht990332@gmail.com> + +pkgname=hunspell +pkgver=1.2.8 +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') +options=('!libtool') +source=(http://downloads.sourceforge.net/hunspell/hunspell-$pkgver.tar.gz) +md5sums=('1177af54a09e320d2c24015f29c3a93e') + +build() { + cd "$srcdir/hunspell-$pkgver" + + ./configure --prefix=/usr --disable-static || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} |