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