[caribou] Fix installation: keyboards dir is not installed with "make install"



commit 31449695cf2b1f31103ca43391b9260ba52075e7
Author: Fernando Herrera <fherrera onirica com>
Date:   Thu May 6 02:37:31 2010 +0200

    Fix installation: keyboards dir is not installed with "make install"
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=617839

 caribou/Makefile.am           |    2 ++
 caribou/keyboards/Makefile.am |   12 ++++++++++++
 configure.ac                  |    1 +
 3 files changed, 15 insertions(+), 0 deletions(-)
---
diff --git a/caribou/Makefile.am b/caribou/Makefile.am
index 1a42dad..7157fe6 100644
--- a/caribou/Makefile.am
+++ b/caribou/Makefile.am
@@ -1,3 +1,5 @@
+SUBDIRS = keyboards
+
 cariboudir = $(pkgpythondir)/
 
 caribou_PYTHON = \
diff --git a/caribou/keyboards/Makefile.am b/caribou/keyboards/Makefile.am
new file mode 100644
index 0000000..3d6bbef
--- /dev/null
+++ b/caribou/keyboards/Makefile.am
@@ -0,0 +1,12 @@
+keyboardsdir = $(pkgpythondir)/keyboards/
+
+keyboards_PYTHON = \
+	__init__.py \
+	keysyms.py \
+	qwerty_es.py \
+	qwerty.py \
+	qwerty_sv.py
+
+
+clean-local:
+	rm -rf *.pyc *.pyo
diff --git a/configure.ac b/configure.ac
index 0bbed0f..3fc8c7a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,6 +41,7 @@ dnl == generate makefiles ==
 AC_OUTPUT([
 Makefile
 caribou/Makefile
+caribou/keyboards/Makefile
 bin/Makefile
 bin/caribou
 ])



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]