blob: 825b601897cc8870c2f9e96a14d9c910e62bb76f (
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
|
#This is a development snapshot, so lets hint OE to use the releases
DEFAULT_PREFERENCE = "-1"
DEFAULT_PREFERENCE_angstrom = "1"
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = "pixman virtual/libx11 libsm libpng fontconfig libxrender"
DESCRIPTION = "Cairo graphics library"
LICENSE = "MPL LGPL"
SRCREV = "3acccf0ea5ca1fde9cf6b91677588680a2644ee6"
PV = "1.9.3"
PR_append = "+gitr${SRCREV}"
SRC_URI = "git://git.cairographics.org/git/cairo;protocol=git \
"
inherit autotools pkgconfig
S = "${WORKDIR}/git"
do_compile_append() {
cd ${S}/perf ; oe_runmake
}
do_stage () {
autotools_stage_all
}
|