mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4330 311d38ba-8fff-0310-9ca6-ca027cbcb966
18 lines
387 B
BlitzBasic
18 lines
387 B
BlitzBasic
DESCRIPTION = "Common X11 scripts"
|
|
LICENSE = "GPL"
|
|
SECTION = "x11"
|
|
RDEPENDS_${PN} = "xmodmap libxrandr xdpyinfo xtscal xinit formfactor"
|
|
PR = "r27"
|
|
|
|
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 {} \;
|
|
}
|