blob: a4cef9c49a5969a8af6ce2cd56ae78af314012c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Common X11 scripts"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS_${PN} = "xmodmap xdpyinfo xtscal xinit formfactor"
PR = "r34"
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 {} \;
}
|