diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:14:45 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:14:45 (GMT) |
commit | d1619a5abc60f3d9e7d3dad588ff1b92bb23e624 (patch) | |
tree | 48d339f8b0f3be940ac1b372c939f22377f983fd /abs/extra-testing/gtkspell/PKGBUILD | |
parent | c6d1a2299fae2c80be87634f38f6c61a7b8086e6 (diff) | |
download | linhes_pkgbuild-d1619a5abc60f3d9e7d3dad588ff1b92bb23e624.zip linhes_pkgbuild-d1619a5abc60f3d9e7d3dad588ff1b92bb23e624.tar.gz linhes_pkgbuild-d1619a5abc60f3d9e7d3dad588ff1b92bb23e624.tar.bz2 |
Missing makedepends for gnome-python-extras
enchant
gdl
gnome-doc-utils
gtkspell
hspell
libgksu
libgtkhtml
libgtop
Diffstat (limited to 'abs/extra-testing/gtkspell/PKGBUILD')
-rw-r--r-- | abs/extra-testing/gtkspell/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/extra-testing/gtkspell/PKGBUILD b/abs/extra-testing/gtkspell/PKGBUILD new file mode 100644 index 0000000..1b372a1 --- /dev/null +++ b/abs/extra-testing/gtkspell/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 22305 2008-12-25 18:48:10Z jgc $ +# Maintainer: Roman Kyrylych <roman@archlinux.org> +# Contributer: Ben <ben@benmazer.net> + +pkgname=gtkspell +pkgver=2.0.15 +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.14.6' 'enchant>=1.4.2') +makedepends=('intltool') +options=('!libtool') +source=(http://gtkspell.sourceforge.net/download/${pkgname}-${pkgver}.tar.gz) +md5sums=('d90a7fe883f29caca149f04f31e2f0f9') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |