gtk/gtkspell/PKGBUILD

25 lines
672 B
Bash
Raw Normal View History

2013-04-28 05:39:26 +08:00
pkgname=gtkspell
pkgver=2.0.16
2013-04-29 00:14:39 +08:00
pkgrel=2
2013-04-28 05:39:26 +08:00
url="http://gtkspell.sourceforge.net/"
pkgdesc="GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget"
arch=('x86_64')
license=('GPL')
2013-04-29 00:14:39 +08:00
depends=('gtk2' 'enchant' 'filesystem-extra')
2013-04-28 05:39:26 +08:00
makedepends=('intltool')
options=('!libtool')
2013-04-29 00:14:39 +08:00
install=gtkspell.install
2013-04-28 05:39:26 +08:00
source=(http://gtkspell.sourceforge.net/download/${pkgname}-${pkgver}.tar.gz)
md5sums=('f75dcc9338f182c571b321d37c606a94')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2013-04-29 00:14:39 +08:00
./configure --prefix=/extra/usr --disable-gtk-doc
2013-04-28 05:39:26 +08:00
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}