blob: bc24f4daaca4f140065f363313f4a2b90bd0997c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "A file-synchronization tool"
HOMEPAGE = "http://www.samba.org/rsync"
SECTION = "console/network"
LICENSE = "GPL"
PRIORITY = "optional"
DEPENDS += "popt"
inherit autotools
EXTRA_OEMAKE='STRIP=""'
do_install_append() {
install -d ${D}/etc
install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc
}
|