summaryrefslogtreecommitdiffstats
path: root/extra/enchant/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'extra/enchant/Pkgfile')
-rw-r--r--extra/enchant/Pkgfile26
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/enchant/Pkgfile b/extra/enchant/Pkgfile
new file mode 100644
index 000000000..2d9f20510
--- /dev/null
+++ b/extra/enchant/Pkgfile
@@ -0,0 +1,26 @@
+# Description: Generic Spell Checking Library.
+# URL: http://www.abisource.com/enchant/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: aspell, glib
+
+name=enchant
+version=1.4.2
+release=1
+source=(http://www.abisource.com/downloads/enchant/$version/enchant-$version.tar.gz)
+
+build() {
+ cd enchant-$version
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/man \
+ --disable-static \
+ --disable-dependency-tracking
+
+ make
+ make DESTDIR=$PKG install
+ chmod a-x $PKG/usr/lib/*.so
+}
+
+