diff options
author | Koen Kooi <koen@openembedded.org> | 2006-11-22 17:31:29 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-11-22 17:31:29 +0000 |
commit | b82a33176140f3e668ed75f5a4f5752daf1fe10d (patch) | |
tree | b4ba420b6b69244aa861a793c6508e953c304938 /packages/rsync/rsync_2.6.9.bb | |
parent | a70939c60495e1067a1b026404fa257627b0ac8e (diff) |
rsync: update to 2.6.9, remove old versions
Diffstat (limited to 'packages/rsync/rsync_2.6.9.bb')
-rw-r--r-- | packages/rsync/rsync_2.6.9.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/rsync/rsync_2.6.9.bb b/packages/rsync/rsync_2.6.9.bb new file mode 100644 index 0000000000..78e2d6eef7 --- /dev/null +++ b/packages/rsync/rsync_2.6.9.bb @@ -0,0 +1,17 @@ +LICENSE = "GPL" +DESCRIPTION = "A file-synchronization tool" +SECTION = "console/network" +PRIORITY = "optional" +PR = "r0" + +SRC_URI = "http://rsync.samba.org/ftp/rsync/rsync-${PV}.tar.gz \ + file://rsyncd.conf" + +inherit autotools + +do_install_append() { + install -d ${D}/etc + install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc +} + +EXTRA_OEMAKE='STRIP=""' |