blob: 49cff5c25da886f64f598405b27eb1a65e2afcb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SRC_URI = "http://ewi546.ewi.utwente.nl/OE/source/${P}.tar.gz"
LICENSE = "LGPL"
DEPENDS = "libopensync openobex bluez-libs"
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/
}
|