mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +02:00
- Define X_LIBS in libxsettings-client and startup-notification to stop them adding system dirs to the library path - Add do_stage to matchbox-desktop git-svn-id: https://svn.o-hand.com/repos/poky@44 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
537 B
BlitzBasic
20 lines
537 B
BlitzBasic
DESCRIPTION = "Startup notification support"
|
|
LICENSE = "LGPL"
|
|
SECTION = "libs"
|
|
PRIORITY = "optional"
|
|
MAINTAINER = "Phil Blundell <pb@nexus.co.uk>"
|
|
DEPENDS = "x11"
|
|
PR = "r1"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
SRC_URI = "http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.8.tar.gz"
|
|
|
|
do_configure_prepend () {
|
|
export X_LIBS=" -L${STAGING_LIBDIR}"
|
|
}
|
|
|
|
do_stage () {
|
|
oe_runmake install DESTDIR="" bindir=${STAGING_BINDIR} includedir=${STAGING_INCDIR} libdir=${STAGING_LIBDIR} prefix=${STAGING_DIR}
|
|
}
|