mirror of
https://git.yoctoproject.org/poky
synced 2026-06-04 02:00:04 +00:00
Check in opensync/libsync/synctool bits - Mostly compiles, not tested
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1113 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
|
||||
PV ?= "0.20+svn${SRCDATE}"
|
||||
PLUGIN_NAME ?= "${@bb.data.getVar('PN', d, 1).replace('libopensync-plugin-','')}"
|
||||
PLUGIN_SONAME ?= "${@bb.data.getVar('PLUGIN_NAME', d, 1).replace('-','_')}.so"
|
||||
SRC_URI ?= "svn://svn.opensync.org/plugins;module=${PLUGIN_NAME};proto=http"
|
||||
S ?= "${WORKDIR}/${PLUGIN_NAME}"
|
||||
|
||||
LICENSE ?= "LGPL"
|
||||
DEPENDS += " libopensync"
|
||||
RRECOMMENDS += " msynctool"
|
||||
HOMEPAGE ?= "http://www.opensync.org/"
|
||||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
FILES_${PN} += "${datadir} ${libdir}/opensync/plugins/*.so"
|
||||
FILES_${PN}-dbg += "${libdir}/opensync/plugins/.debug"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${datadir}/opensync/defaults
|
||||
install -d ${D}${libdir}/opensync/plugins
|
||||
install -m 644 src/${PLUGIN_NAME} ${D}${datadir}/opensync/defaults
|
||||
install -m 755 src/.libs/${PLUGIN_SONAME} ${D}${libdir}/opensync/plugins/
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user