mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1234 311d38ba-8fff-0310-9ca6-ca027cbcb966
23 lines
539 B
BlitzBasic
23 lines
539 B
BlitzBasic
DESCRIPTION = "Vincent OpenGL-ES library "
|
|
HOMEPAGE = "http://sourceforge.net/projects/ogl-es/"
|
|
LICENSE = "BSD"
|
|
|
|
PV = "0.0+svn${SRCDATE}"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=ogles;proto=http"
|
|
S = "${WORKDIR}/ogles/"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
# PACKAGES = ${PN}
|
|
|
|
do_stage() {
|
|
install -d ${STAGING_INCDIR}/GLES
|
|
|
|
install -m 0644 ${S}/include/ug.h ${STAGING_INCDIR}
|
|
install -m 0644 ${S}/include/GLES/* ${STAGING_INCDIR}/GLES/
|
|
|
|
oe_libinstall -so libvincent ${STAGING_LIBDIR}
|
|
}
|