diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-13 18:01:44 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-13 18:01:44 +0000 |
commit | 3fbf5d5cf933d9cbd8029eb3ec4c3a915ef5b173 (patch) | |
tree | 5df4c28f94c1765a1e65311df4942a85b5ea1abd | |
parent | 2f3f2c8fd74be1c2b25b14c154456eb597991d65 (diff) |
install libopietooth.so also into staging area
BKrev: 40f42388b2sjuCsOjiUoct_HvYfc6A
-rw-r--r-- | libopietooth/libopietooth_cvs.oe | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libopietooth/libopietooth_cvs.oe b/libopietooth/libopietooth_cvs.oe index e69de29bb2..e1d35aa6e8 100644 --- a/libopietooth/libopietooth_cvs.oe +++ b/libopietooth/libopietooth_cvs.oe @@ -0,0 +1,24 @@ +DESCRIPTION = "Opie Bluetooth library" +SECTION = "opie/libs" +PRIORITY = "optional" +DEPENDS = "libopie" +MAINTAINER = "Open Embedded <oe@handhelds.org>" +LICENSE = "GPL" +PV = "1.1.4-cvs-${CVSDATE}" + +inherit palmtop + +EXTRA_QMAKEVARS_POST = "DESTDIR=${S}" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/noncore/net/opietooth/lib;date=${CVSDATE}" +S = "${WORKDIR}/lib" + +do_stage() { + install -m 0644 *.h ${STAGING_INCDIR}/ + oe_libinstall -so libopietooth1 ${STAGING_LIBDIR}/ +} + +do_install() { + oe_libinstall -so libopietooth1 ${D}/${palmtopdir}/lib +} + |