blob: 0addbdd5fc6cf114002c18f8bc7b7b76ec22ba42 (
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
|
SECTION = "x11/gnome"
PR = "r1"
LICENSE = "LGPL"
# can't use gnome.oeclass due to _ in filename
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
file://${HOST_SYS}/art_config.h \
file://Makefile.am.patch;patch=1"
inherit autotools pkgconfig
DEPENDS = ""
FILES_${PN} = "${libdir}/*.so.*"
FILES_${PN}-dev += "${bindir}/libart2-config"
S = "${WORKDIR}/libart_lgpl-${PV}"
do_configure_prepend() {
cp ${WORKDIR}/${HOST_SYS}/art_config.h ${S}
}
EXTRA_OECONF = "--disable-gtk-doc"
do_stage() {
autotools_stage_includes
oe_libinstall -a -so libart_lgpl_2 ${STAGING_LIBDIR}
}
|