blob: c65f270312c98d4e7d5d123dc3e8d13acb4f510b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "File synchronization tool"
2HOMEPAGE = "http://rsync.samba.org/"
3BUGTRACKER = "http://rsync.samba.org/bugzilla.html"
4SECTION = "console/network"
5
6# GPLv2+ (<< 3.0.0), GPLv3+ (>= 3.0.0)
7LICENSE = "GPLv3+"
8LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
9
10# needs to add acl and attr
11DEPENDS = "popt"
12
13SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \
14 file://rsyncd.conf"
15
16inherit autotools
17
18do_install_append() {
19 install -d ${D}${sysconfdir}
20 install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir}
21}
22
23EXTRA_OEMAKE='STRIP=""'