mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
pkgconfig.bbclass was staging libsoup.pc which made builds unusable if 2.2 and 2.4 versions were used (one overwrote other).
21 lines
491 B
BlitzBasic
21 lines
491 B
BlitzBasic
DESCRIPTION = "An HTTP library implementation in C"
|
|
LICENSE = "GPL"
|
|
SECTION = "x11/gnome/libs"
|
|
|
|
DEPENDS = "glib-2.0 gnutls libxml2"
|
|
PR = "r2"
|
|
|
|
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${PN}/2.2/${PN}-${PV}.tar.bz2"
|
|
|
|
inherit autotools
|
|
|
|
FILES_${PN} = "${libdir}/lib*.so.*"
|
|
FILES_${PN}-dev = "${includedir}/ ${libdir}/"
|
|
FILES_${PN}-doc = "${datadir}/"
|
|
|
|
do_stage() {
|
|
autotools_stage_all
|
|
install -d ${PKG_CONFIG_DIR}
|
|
install -m 0644 ${S}/libsoup.pc ${PKG_CONFIG_DIR}/libsoup-2.2.pc
|
|
}
|