blob: cc7dbf9a6bfe1d9758e31a90412cae735e3765ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
DESCRIPTION = "Low level 2D blitting/blending graphics acceleration services support on DM6446, OMAP3530 and OMAP-L137."
require ti-paths.inc
inherit autotools
DEPENDS = "ti-codec-engine ti-dmai"
# Fetch source from svn repo
SRCREV = "2"
SRC_URI = "svn://gforge.ti.com/svn/${PN};module=trunk;proto=https;user=anonymous;pswd='' \
file://recent-linux.diff;patch=1 \
"
# Again, no '.' in PWD allowed :(
PV = "0+svnr${SRCPV}"
PR = "r1"
S = "${WORKDIR}/trunk/bitblit"
export LINUXLIBS_INSTALL_DIR="${STAGING_DIR_HOST}/usr"
export EXEC_DIR = "${D}${datadir}/ti/bitblit/"
CPPFLAGS_append = " -DPlatform_${PLATFORM}"
PACKAGE_ARCH = "${MACHINE_ARCH}"
do_compile() {
oe_runmake -e all
}
do_install() {
oe_runmake -e install
}
|