blob: d42414d0d0e56ec92d008dcd3ad0b712f4d8906c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
LICENSE = "LGPL"
DESCRIPTION = "GPE program launcher library"
SECTION = "libs"
MAINTAINER = "Philip Blundell <pb@handhelds.org>"
DEPENDS = "gtk+ libgpewidget startup-notification"
inherit autotools pkgconfig
SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.bz2"
do_stage() {
oe_runmake install prefix=${STAGING_DIR} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR}
}
|