diff options
Diffstat (limited to 'community/gtkspell3/PKGBUILD')
-rw-r--r-- | community/gtkspell3/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/gtkspell3/PKGBUILD b/community/gtkspell3/PKGBUILD new file mode 100644 index 000000000..35929803e --- /dev/null +++ b/community/gtkspell3/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 69145 2012-04-09 20:12:18Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Roman Kyrylych <roman@archlinux.org> +# Contributor: Ben <ben@benmazer.net> + +pkgname=gtkspell3 +_pkgname=gtkspell +pkgver=3.0.0.hg20110814 +_pkgver=3.0.0~hg20110814 +pkgrel=1 +url="http://gtkspell.sourceforge.net/" +pkgdesc="Provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget" +arch=('i686' 'x86_64') +license=('GPL') +depends=('gtk3' 'enchant') +makedepends=('intltool') +options=('!libtool') +source=(http://pkgbuild.com/~bgyorgy/sources/${pkgname}_$_pkgver.orig.tar.gz) +md5sums=('7cebcfa281f1f21fcb419f559a3e9e56') + +build() { + cd "$srcdir/$_pkgname-3.0.0+dev" + + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd "$srcdir/$_pkgname-3.0.0+dev" + + make DESTDIR="$pkgdir" install +} |