mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
17 lines
398 B
BlitzBasic
17 lines
398 B
BlitzBasic
LICENSE = "LGPL"
|
|
DEPENDS = "libopensync"
|
|
SRC_URI = "http://www.o-hand.com/~chris/${PN}-${PV}.tar.gz"
|
|
PR = "r1"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
# Work around opensync's broken pkgconfig usage
|
|
do_install_append () {
|
|
mv ${D}/${STAGING_DIR}/* ${D}/${prefix}/
|
|
}
|
|
|
|
FILES_${PN} += "${datadir}/opensync/defaults/file-sync \
|
|
${libdir}/opensync/*/*.so"
|
|
FILES_${PN}-dev += "${libdir}/opensync/*/*.la"
|
|
|