diff options
Diffstat (limited to 'meta/recipes-devtools/rsync/rsync.inc')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rsync/rsync.inc b/meta/recipes-devtools/rsync/rsync.inc new file mode 100644 index 0000000000..fdc7e37cf6 --- /dev/null +++ b/meta/recipes-devtools/rsync/rsync.inc | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "A file-synchronization tool" | ||
2 | HOMEPAGE = "http://rsync.samba.org/" | ||
3 | BUGTRACKER = "http://rsync.samba.org/bugzilla.html" | ||
4 | SECTION = "console/network" | ||
5 | PRIORITY = "optional" | ||
6 | |||
7 | # GPLv2+ (<< 3.0.0), GPLv3+ (>= 3.0.0) | ||
8 | LICENSE = "GPLv3+" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
10 | |||
11 | # needs to add acl and attr | ||
12 | DEPENDS = "popt" | ||
13 | |||
14 | SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \ | ||
15 | file://rsyncd.conf" | ||
16 | |||
17 | inherit autotools | ||
18 | |||
19 | do_install_append() { | ||
20 | install -d ${D}/etc | ||
21 | install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc | ||
22 | } | ||
23 | |||
24 | EXTRA_OEMAKE='STRIP=""' | ||