blob: 8e3a90599a345615b5782eb4adaa3143243dcd75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "libgee is a collection library providing GObject-based interfaces \
and classes for commonly used data structures."
HOMEPAGE = "http://live.gnome.org/Libgee"
SECTION = "libs"
DEPENDS = "glib-2.0"
LICENSE = "LGPL"
SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/libgee/0.1/libgee-${PV}.tar.bz2 \
file://no-tests.patch;patch=1"
inherit autotools pkgconfig
do_stage() {
autotools_stage_all
install -d ${STAGING_DATADIR}/vala/vapi
install -m 0644 ${S}/gee/gee-1.0.vapi ${STAGING_DATADIR}/vala/vapi
}
FILES_${PN} += "${datadir}/vala"
|