mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00

Change-Id: Ib98889d05b33ec2647966f2827e1fbf84f35fd95 Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
39 lines
1.0 KiB
BlitzBasic
39 lines
1.0 KiB
BlitzBasic
DESCRIPTION = "This repository contains the source code for the ARM side \
|
|
libraries used on Raspberry Pi. These typically are installed in /opt/vc/lib \
|
|
and includes source for the ARM side code to interface to: EGL, mmal, GLESv2,\
|
|
vcos, openmaxil, vchiq_arm, bcm_host, WFC, OpenVG."
|
|
LICENSE = "Broadcom"
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=957f6640d5e2d2acfce73a36a56cb32f"
|
|
|
|
PR = "r4"
|
|
|
|
PROVIDES = "virtual/libgles2 \
|
|
virtual/egl"
|
|
COMPATIBLE_MACHINE = "raspberrypi"
|
|
|
|
SRCREV = "6da40ffd91f2b3c2aa8471195813322ae5d0cb0d"
|
|
SRC_URI = "git://github.com/raspberrypi/userland.git;protocol=git;branch=master \
|
|
"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release"
|
|
|
|
# The compiled binaries don't provide sonames.
|
|
SOLIBS = "${SOLIBSDEV}"
|
|
|
|
do_install_append() {
|
|
mkdir -p ${D}/${prefix}
|
|
mv ${D}/opt/vc/* ${D}/${prefix}
|
|
rm -rf ${D}/opt
|
|
}
|
|
|
|
FILES_${PN} += "${libdir}/*${SOLIBS}"
|
|
FILES_${PN}-dev = "${includedir} \
|
|
${prefix}/src"
|
|
FILES_${PN}-doc += "${datadir}/install"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|