diff options
author | Koen Kooi <koen@openembedded.org> | 2005-11-29 17:39:26 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-11-29 17:39:26 +0000 |
commit | ea93a0ba65c5937ea99a7307d27121d1015d207d (patch) | |
tree | 86f9bc25e0b6588463535509f1c651e0ae76998b | |
parent | b4fa59b2d8d3b64689905733c309afe2f278d5c0 (diff) |
libopensync-plugin-irmc: add 0.18
-rw-r--r-- | packages/opensync/libopensync-plugin-file_0.18.bb | 2 | ||||
-rw-r--r-- | packages/opensync/libopensync-plugin-gpe_0.18.bb | 2 | ||||
-rw-r--r-- | packages/opensync/libopensync-plugin-irmc_0.18.bb | 19 |
3 files changed, 21 insertions, 2 deletions
diff --git a/packages/opensync/libopensync-plugin-file_0.18.bb b/packages/opensync/libopensync-plugin-file_0.18.bb index 9cf3b9790f..332777e949 100644 --- a/packages/opensync/libopensync-plugin-file_0.18.bb +++ b/packages/opensync/libopensync-plugin-file_0.18.bb @@ -9,7 +9,7 @@ MAINTAINER = "Koen Kooi <koen@handhelds.org>" inherit autotools pkgconfig -FILES_${PN} += "{datadir} ${libdir}" +FILES_${PN} += "${datadir} ${libdir}" do_install() { install -d ${D}${datadir}/opensync/defaults install -d ${D}${libdir}/opensync/plugins diff --git a/packages/opensync/libopensync-plugin-gpe_0.18.bb b/packages/opensync/libopensync-plugin-gpe_0.18.bb index 180eb92554..b8b27d3689 100644 --- a/packages/opensync/libopensync-plugin-gpe_0.18.bb +++ b/packages/opensync/libopensync-plugin-gpe_0.18.bb @@ -9,7 +9,7 @@ MAINTAINER = "Koen Kooi <koen@handhelds.org>" inherit autotools pkgconfig -FILES_${PN} += "{datadir} ${libdir}" +FILES_${PN} += "${datadir} ${libdir}" do_install() { install -d ${D}${datadir}/opensync/defaults diff --git a/packages/opensync/libopensync-plugin-irmc_0.18.bb b/packages/opensync/libopensync-plugin-irmc_0.18.bb new file mode 100644 index 0000000000..32f2a3085d --- /dev/null +++ b/packages/opensync/libopensync-plugin-irmc_0.18.bb @@ -0,0 +1,19 @@ +SRC_URI = "http://ewi546.ewi.utwente.nl/OE/source/${P}.tar.gz" + + +LICENSE = "LGPL" +DEPENDS = "libopensync" +RRECOMMENDS = "multisync" +HOMEPAGE = "http://www.opensync.org/" +MAINTAINER = "Koen Kooi <koen@handhelds.org>" + +inherit autotools pkgconfig + +FILES_${PN} += "${datadir} ${libdir}" + +do_install() { +install -d ${D}${datadir}/opensync/defaults +install -d ${D}${libdir}/opensync/plugins +install -m 644 src/irmc-sync ${D}${datadir}/opensync/defaults +install -m 755 src/.libs/irmc_sync.so ${D}${libdir}/opensync/plugins/ +} |