diff options
author | Richard Purdie <richard@openedhand.com> | 2008-06-17 15:42:01 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-06-17 15:42:01 +0000 |
commit | 50f13f955a072b8f249e99eef45e95df7b25c713 (patch) | |
tree | d113b96f1484fe4e224c1e62ebb6d0102a6f0860 /meta/packages/opensync/libopensync-plugin-syncml_svn.bb | |
parent | 30d39ad5785beb8a1d5f02614a5207f227d73e24 (diff) | |
download | poky-50f13f955a072b8f249e99eef45e95df7b25c713.tar.gz |
opensync/syncml: Sync with changes in layout upstream
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4684 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/opensync/libopensync-plugin-syncml_svn.bb')
-rw-r--r-- | meta/packages/opensync/libopensync-plugin-syncml_svn.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/packages/opensync/libopensync-plugin-syncml_svn.bb b/meta/packages/opensync/libopensync-plugin-syncml_svn.bb new file mode 100644 index 0000000000..0a7d82db74 --- /dev/null +++ b/meta/packages/opensync/libopensync-plugin-syncml_svn.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | |||
2 | SRC_URI = "svn://svn.opensync.org/plugins;module=syncml;proto=http" | ||
3 | S = "${WORKDIR}/syncml" | ||
4 | |||
5 | require libopensync-plugin.inc | ||
6 | |||
7 | DEPENDS += " libsyncml" | ||
8 | |||
9 | do_install() { | ||
10 | install -d ${D}${datadir}/opensync/defaults | ||
11 | install -d ${D}${libdir}/opensync/plugins | ||
12 | install -m 644 src/syncml-http-server ${D}${datadir}/opensync/defaults | ||
13 | install -m 644 src/syncml-obex-client ${D}${datadir}/opensync/defaults | ||
14 | install -m 755 src/.libs/${PLUGIN_SONAME} ${D}${libdir}/opensync/plugins/ | ||
15 | } | ||
16 | |||