PKGBUILDs/extra/enchant/PKGBUILD

23 lines
675 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 50632 2009-08-30 06:12:36Z allan $
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=enchant
pkgver=1.5.0
pkgrel=1
pkgdesc="A wrapper library for generic spell checking"
arch=('i686' 'x86_64')
url="http://www.abisource.com/enchant/"
license=('LGPL')
depends=('aspell' 'dbus-glib>=0.74' 'hunspell>=1.2.2')
makedepends=('hspell')
options=(!libtool)
source=(http://www.abisource.com/downloads/enchant/${pkgver}/${pkgname}-${pkgver}.tar.gz)
md5sums=('7dfaed14e142b4a0004b770c9568ed02')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --disable-static || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
}