diff options
author | Koen Kooi <koen@openembedded.org> | 2006-11-22 11:19:39 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-11-22 11:19:39 +0000 |
commit | 1f79d34e815553402fcd3386345a6c0eaaaa74cb (patch) | |
tree | c66acaae0dc3e3e727189eb9566ce4e2d9b01c7f /packages/cairo/cairo_git.bb | |
parent | 1df146c26407f1ce03084f21a259ca4250907ec4 (diff) |
cairo: add floating git version
Diffstat (limited to 'packages/cairo/cairo_git.bb')
-rw-r--r-- | packages/cairo/cairo_git.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/cairo/cairo_git.bb b/packages/cairo/cairo_git.bb new file mode 100644 index 0000000000..28b03b653a --- /dev/null +++ b/packages/cairo/cairo_git.bb @@ -0,0 +1,24 @@ +#This is a development snapshot, so lets hint OE to use the releases +#DEFAULT_PREFERENCE = "-1" + +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "virtual/libx11 libsm libpng fontconfig libxrender" +DESCRIPTION = "Cairo graphics library" +LICENSE = "MPL LGPL" + +PV = "1.3.2+git${SRCDATE}" + +SRC_URI = "git://git.cairographics.org/git/cairo;protocol=git \ + " +inherit autotools pkgconfig + +S = "${WORKDIR}/git" + +do_configure_prepend() { + sed -i s:PKGCONFIG_REQUIRED=0.19:PKGCONFIG_REQUIRED=0.15: configure.in +} + +do_stage () { + autotools_stage_all +} |