blob: fa8f810f6599e1b34cfacb8058eb8c5aa7234ef2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Clutter GStreamer"
HOMEPAGE = "http://www.clutter-project.org/"
LICENSE = "LGPL"
DEPENDS = "clutter gstreamer gst-plugins-base"
PACKAGES =+ "${PN}-examples"
FILES_${PN}-examples = "${bindir}/video-player ${bindir}/video-sink ${bindir}/audio"
inherit autotools pkgconfig
do_configure_prepend() {
if [ -e ${WORKDIR}/gtk-doc.make ] ; then
cp ${WORKDIR}/gtk-doc.make ${S}/gtk-doc.make
else
touch ${S}/gtk-doc.make
fi
}
do_stage () {
autotools_stage_all
}
|