diff options
Diffstat (limited to 'extra/gtkspell')
-rw-r--r-- | extra/gtkspell/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/gtkspell/PKGBUILD b/extra/gtkspell/PKGBUILD new file mode 100644 index 000000000..162584730 --- /dev/null +++ b/extra/gtkspell/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 58462 2009-11-08 16:00:59Z jgc $ +# Maintainer: Roman Kyrylych <roman@archlinux.org> +# Contributer: Ben <ben@benmazer.net> + +pkgname=gtkspell +pkgver=2.0.16 +pkgrel=1 +url="http://gtkspell.sourceforge.net/" +pkgdesc="GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget" +arch=('i686' 'x86_64') +license=('GPL') +depends=('gtk2>=2.18.3' 'enchant>=1.5.0') +makedepends=('intltool' 'gtk-doc') +options=('!libtool') +source=(http://gtkspell.sourceforge.net/download/${pkgname}-${pkgver}.tar.gz) +md5sums=('f75dcc9338f182c571b321d37c606a94') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |