summaryrefslogtreecommitdiff
path: root/packages/aspell/aspell-lang.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/aspell/aspell-lang.inc')
-rw-r--r--packages/aspell/aspell-lang.inc23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/aspell/aspell-lang.inc b/packages/aspell/aspell-lang.inc
new file mode 100644
index 0000000000..709183b428
--- /dev/null
+++ b/packages/aspell/aspell-lang.inc
@@ -0,0 +1,23 @@
+FILES_${PN} = "/usr/lib/aspell/* /usr/share/aspell/*"
+
+DEPENDS = "aspell-native"
+
+do_configure() {
+ cd ${S}
+ export dictdir=/usr/lib/aspell/
+ export datadir=/usr/share/aspell/
+ DESTDIR=${D} ./configure
+}
+
+do_compile() {
+ export dictdir=/usr/lib/aspell/
+ export datadir=/usr/share/aspell/
+ dictdir=/usr/lib/aspell oe_runmake
+}
+
+do_install() {
+ export dictdir=/usr/lib/aspell/
+ export datadir=/usr/share/aspell/
+ oe_runmake install
+}
+