generic-poky/meta/packages/x11-common/x11-common_0.1.bb
Richard Purdie c57e2d6315 x11-common: Disable mipmapped text for now until problems with mesa are resolved
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2009-08-14 18:00:09 +01:00

18 lines
377 B
BlitzBasic

DESCRIPTION = "Common X11 scripts"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS_${PN} = "xmodmap xdpyinfo xtscal xinit formfactor"
PR = "r38"
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 {} \;
}