blob: eeb1b60de57bb4a8daf47ba51cd961cb81c4ec1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "Vincent OpenGL-ES library "
HOMEPAGE = "http://sourceforge.net/projects/ogl-es/"
LICENSE = "BSD"
PV = "0.0+svnr${SRCREV}"
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}
}
|