generic-poky/meta/packages/gnome/gobject-introspection_git.bb
Joshua Lock 4d1f39af75 autotools: deprecate autotools_stage class
Move the functionality into autotools and ensure all our Poky recipes are no
longer using it.
Keep the autools_stage class around for OE compatability but just have it
inherit autools.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
2010-04-27 17:11:28 +01:00

24 lines
646 B
BlitzBasic

SRC_URI = "git://git.gnome.org/gobject-introspection;protocol=git \
file://configure.patch;patch=1 \
file://pathfix.patch;patch=1"
SRC_URI_virtclass-native = "git://git.gnome.org/gobject-introspection;protocol=git \
file://pathfix.patch;patch=1"
PV = "0.0+git${SRCREV}"
PR = "r3"
S = "${WORKDIR}/git"
DEPENDS = "libffi python-native gobject-introspection-native"
DEPENDS_virtclass-native = "libffi-native python-native"
inherit autotools
TARGET_CFLAGS += "-I${STAGING_INCDIR_NATIVE}/python2.5"
do_configure_prepend () {
echo "EXTRA_DIST = " > ${S}/gtk-doc.make
}
BBCLASSEXTEND = "native"