mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
675 B
Bash
22 lines
675 B
Bash
# $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
|
|
}
|