blob: da897ffe47e284ad2574fb096f23cef791f752f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "Sugar toolkit"
LICENSE = "LGPLv2"
DEPENDS = "python python-pygtk libxml-parser-perl-native libxml2 gtk+"
SRC_URI = "http://dev.laptop.org/pub/sugar/sources/sugar-toolkit/sugar-toolkit-${PV}.tar.bz2"
inherit autotools distutils-base
SRC_URI += "file://acinclude.m4"
EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
}
AUTOTOOLS_STAGE_PKGCONFIG = "1"
do_stage() {
autotools_stage_all
}
|