aboutsummaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/rest/rest_0.8.1.bb
blob: 545224a99e322435c15d7eff2bf9ad34788dfb45 (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
29
30
31
32
33
SUMMARY = "library to access web services that claim to be "RESTful""
HOMEPAGE = "https://wiki.gnome.org/Projects/Librest"
LICENSE = "LGPLv2.1"
LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"

GNOMEBASEBUILDCLASS = "autotools"

DEPENDS = " \
    libxml2-native \
    glib-2.0-native \
    glib-2.0 \
    libsoup-2.4 \
"

inherit gnomebase gobject-introspection gtk-doc vala

PV .= "+git${SRCPV}"
SRCREV = "7b46065dea860ef09861f4d70124728b8270c8b7"
SRC_URI = "git://gitlab.gnome.org/GNOME/librest;protocol=https;branch=master \
    file://0001-Use-GUri-instead-of-SoupURI.patch \
    file://0002-Port-to-libsoup3.patch \
"
S = "${WORKDIR}/git"

do_configure:prepend() {
    # rest expects introspection.m4 at custom location (see aclocal.m4).
    cp -f ${STAGING_DIR_TARGET}/${datadir}/aclocal/introspection.m4 ${S}/build
}

do_compile:prepend() {
    export GIR_EXTRA_LIBS_PATH="${B}/rest/.libs"
}