mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
23 lines
759 B
Bash
23 lines
759 B
Bash
# $Id: PKGBUILD 37521 2009-05-02 17:41:52Z jgc $
|
|
# Maintainer: Roman Kyrylych <roman@archlinux.org>
|
|
# Contributer: Ben <ben@benmazer.net>
|
|
|
|
pkgname=gtkspell
|
|
pkgver=2.0.15
|
|
pkgrel=1.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.16.1' 'enchant>=1.4.2')
|
|
makedepends=('intltool' 'gtk-doc')
|
|
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
|
|
}
|