blob: 252d0f6ee43b403618373acdb6b40cae3d82e2fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "X11 Splash screen"
LICENSE = "GPL"
SECTION = "x11"
PR = "r0"
SRC_URI = "\
file://xsplash-vga.ppm \
file://xsplash-qvga.ppm \
file://xsplash-qvga-square.ppm \
"
S = "${WORKDIR}"
do_install() {
# branding-foo. yes, /usr/share/pixmaps is hardcoded here, since it's
# also hardcoded in the Xserver script...
install -d ${D}/usr/share/pixmaps
install -m 0755 ${WORKDIR}/*.ppm ${D}/usr/share/pixmaps
}
PACKAGE_ARCH = "all"
|