generic-poky/meta/packages/x11-common/x11-common_0.1.bb
Richard Purdie 8f32595f6b x11-common: Remove unused Xinit file, remove hardcoded user assumptions
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2009-05-27 11:44:42 +01:00

18 lines
377 B
BlitzBasic

DESCRIPTION = "Common X11 scripts"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS_${PN} = "xmodmap xdpyinfo xtscal xinit formfactor"
PR = "r37"
SRC_URI = "file://etc"
S = ${WORKDIR}
PACKAGE_ARCH = "all"
do_install() {
cp -R ${S}/etc ${D}/etc
chmod -R 755 ${D}/etc
find ${D}/etc -type d -name .svn -prune -exec rm -rf {} \;
find ${D}/etc -type f -name \*~ -exec rm -rf {} \;
}