diff options
Diffstat (limited to 'meta/recipes-devtools/rsync/rsync_2.6.9.bb')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync_2.6.9.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rsync/rsync_2.6.9.bb b/meta/recipes-devtools/rsync/rsync_2.6.9.bb new file mode 100644 index 0000000000..43379829ea --- /dev/null +++ b/meta/recipes-devtools/rsync/rsync_2.6.9.bb | |||
@@ -0,0 +1,25 @@ | |||
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 | # needs to add acl and attr | ||
8 | DEPENDS = "popt" | ||
9 | |||
10 | SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \ | ||
11 | file://rsyncd.conf" | ||
12 | |||
13 | inherit autotools | ||
14 | |||
15 | do_install_append() { | ||
16 | install -d ${D}/etc | ||
17 | install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc | ||
18 | } | ||
19 | |||
20 | EXTRA_OEMAKE='STRIP=""' | ||
21 | |||
22 | LICENSE = "GPLv2+" | ||
23 | LIC_FILES_CHKSUM = "file://COPYING;md5=6d5a9d4c4d3af25cd68fd83e8a8cb09c" | ||
24 | |||
25 | PR = "r2" | ||