diff options
Diffstat (limited to 'meta/packages/x11-common/x11-common_0.1.bb')
-rw-r--r-- | meta/packages/x11-common/x11-common_0.1.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/packages/x11-common/x11-common_0.1.bb b/meta/packages/x11-common/x11-common_0.1.bb new file mode 100644 index 0000000000..a4cef9c49a --- /dev/null +++ b/meta/packages/x11-common/x11-common_0.1.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | DESCRIPTION = "Common X11 scripts" | ||
2 | LICENSE = "GPL" | ||
3 | SECTION = "x11" | ||
4 | RDEPENDS_${PN} = "xmodmap xdpyinfo xtscal xinit formfactor" | ||
5 | PR = "r34" | ||
6 | |||
7 | SRC_URI = "file://etc" | ||
8 | S = ${WORKDIR} | ||
9 | |||
10 | PACKAGE_ARCH = "all" | ||
11 | |||
12 | do_install() { | ||
13 | cp -R ${S}/etc ${D}/etc | ||
14 | chmod -R 755 ${D}/etc | ||
15 | find ${D}/etc -type d -name .svn -prune -exec rm -rf {} \; | ||
16 | find ${D}/etc -type f -name \*~ -exec rm -rf {} \; | ||
17 | } | ||