summaryrefslogtreecommitdiff
path: root/aspell/aspell_0.50.5.oe
diff options
context:
space:
mode:
Diffstat (limited to 'aspell/aspell_0.50.5.oe')
-rw-r--r--aspell/aspell_0.50.5.oe26
1 files changed, 26 insertions, 0 deletions
diff --git a/aspell/aspell_0.50.5.oe b/aspell/aspell_0.50.5.oe
index e69de29bb2..9ec98ca8cb 100644
--- a/aspell/aspell_0.50.5.oe
+++ b/aspell/aspell_0.50.5.oe
@@ -0,0 +1,26 @@
+SRC_URI = "ftp://ftp.gnu.org/gnu/aspell/aspell-${PV}.tar.gz \
+ file://mk-dirs_h.py \
+ file://makefile.patch;patch=1"
+DESCRIPTION = "GNU Aspell spell-checker"
+
+PACKAGES =+ "libaspell libpspell libpspell-dev aspell-utils"
+
+FILES_libaspell = "${libdir}/libaspell.so.* ${datadir}/aspell"
+FILES_aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspell"
+FILES_${PN} = "${bindir}/aspell"
+FILES_libpspell = "${libdir}/libpspell.so.*"
+FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell"
+
+inherit autotools
+
+do_compile_prepend() {
+ install ${WORKDIR}/mk-dirs_h.py ${S}/common/mk-dirs_h
+}
+
+do_stage() {
+ oe_libinstall -C lib -so libaspell ${STAGING_LIBDIR}
+ install -m 0644 interfaces/cc/aspell.h ${STAGING_INCDIR}
+ oe_libinstall -C lib -so libpspell ${STAGING_LIBDIR}
+ install -d ${STAGING_INCDIR}/pspell
+ install -m 0644 interfaces/cc/pspell.h ${STAGING_INCDIR}/pspell
+}