summaryrefslogtreecommitdiff
path: root/extra/enchant/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/enchant/PKGBUILD')
-rw-r--r--extra/enchant/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/enchant/PKGBUILD b/extra/enchant/PKGBUILD
new file mode 100644
index 000000000..d3a1fd26f
--- /dev/null
+++ b/extra/enchant/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 127251 2011-06-11 20:47:42Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: dorphell <dorphell@archlinux.org>
+
+pkgname=enchant
+pkgver=1.6.0
+pkgrel=3
+pkgdesc="A wrapper library for generic spell checking"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://www.abisource.com/enchant/"
+license=('LGPL')
+depends=('aspell' 'dbus-glib' 'hunspell')
+makedepends=('hspell')
+optdepends=('hspell: Hebrew dictionary')
+options=('!libtool')
+source=("http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('de11011aff801dc61042828041fb59c7')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr \
+ --disable-static \
+ --disable-ispell \
+ --with-myspell-dir=/usr/share/myspell
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}