blob: f00ac7f5238a427f4d635f7bbc73074ee1f1dc3f (
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
35
36
37
38
|
DESCRIPTION = "GST output sink for Omapfb"
LICENSE = "GPL"
inherit autotools
DEPENDS = "gstreamer virtual/libx11 virtual/kernel"
SRCREV = "6f0b1cb50d1c67c3a3db2f11246256060ac871de"
PV = "0.0+${PR}+gitr${SRCREV}"
SRC_URI = "git://github.com/felipec/${PN}.git;protocol=git \
file://0001-Implement-XOverlay-and-I420-to-422-colorspace-conver.patch;patch=1"
S ="${WORKDIR}/git"
# We want a kernel header for armv7a, but we don't want to make gst-omapfb machine specific for that
STAGING_KERNEL_DIR = "${STAGING_DIR}/${MACHINE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/kernel"
EXTRA_OEMAKE = " KERNEL=${STAGING_KERNEL_DIR}"
CFLAGS += "-I${S}"
TARGET_CC_ARCH += "${CFLAGS} ${LDFLAGS}"
do_configure_prepend() {
install -d ${S}/linux
cp ${STAGING_KERNEL_DIR}/arch/arm/plat-omap/include/mach/omapfb.h ${S}/linux || true
cp ${STAGING_KERNEL_DIR}/include/asm-arm/arch-omap/omapfb.h ${S}/linux || true
cp ${STAGING_KERNEL_DIR}/include/linux/omapfb.h ${S}/linux || true
sed -e 's/__user//g' -i ${S}/linux/omapfb.h
}
do_install() {
install -d ${D}${libdir}/gstreamer-0.10
install -m 0755 libgstomapfb.so ${D}${libdir}/gstreamer-0.10
}
FILES_${PN} += "${libdir}/gstreamer-0.10/libgstomapfb.so"
FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug"
|