diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-02-07 14:50:22 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-07 14:50:22 +0000 |
commit | c2564f341b46fbc5e77b950ad977e185a1997e0b (patch) | |
tree | 9bfcb09ded5154338f4bfda7427189eeda8e6416 /packages/cups | |
parent | eb613287c594aba337c66d2c2fac15b10e18d35e (diff) |
gnome-cups-manager_0.31.bb, libgnomecups_0.2.2.bb : add these to OE now cups exists.
cups_1.1.23.bb : inherit binconfig for cups-config staging and add staging for the header files and libs
Diffstat (limited to 'packages/cups')
-rw-r--r-- | packages/cups/cups_1.1.23.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/cups/cups_1.1.23.bb b/packages/cups/cups_1.1.23.bb index 500010226f..9094bb9dff 100644 --- a/packages/cups/cups_1.1.23.bb +++ b/packages/cups/cups_1.1.23.bb @@ -5,7 +5,7 @@ LICENSE = "GPL LGPL" SRC_URI = "ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2" -inherit autotools +inherit autotools binconfig LDFLAGS += " -L${STAGING_LIBDIR} " @@ -25,3 +25,10 @@ do_compile () { do_install () { oe_runmake "DSTROOT=${D}" install } + +do_stage () { + install -d ${STAGING_INCDIR}/cups + install ${S}/cups/*.h ${STAGING_INCDIR}/cups/ + oe_libinstall -C cups -so libcups ${STAGING_LIBDIR} +} + |