diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2014-09-30 02:02:47 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-10-06 01:07:52 +0200 |
commit | 8b7c647e2b3eab56f817585685a5b0f3b7d5369b (patch) | |
tree | 70b64a12fc9b1317aa603c5f2a6afe2fb660def7 | |
parent | ebe49fff79acac3dcfba0083bfee2141db7ab0e4 (diff) | |
download | meta-openembedded-8b7c647e2b3eab56f817585685a5b0f3b7d5369b.tar.gz |
rsnapshot: add new package
rsnapshot is a filesystem snapshot utility based on rsync.
rsnapshot makes it easy to make periodic snapshots of local machines,
and remote machines over ssh. The code makes extensive use of hard links
whenever possible, to greatly reduce the disk space required.
Homepage: http://www.rsnapshot.org/
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb b/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb new file mode 100644 index 000000000..afd367806 --- /dev/null +++ b/meta-oe/recipes-support/rsnapshot/rsnapshot_git.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | SUMMARY = "A filesystem snapshot utility based on rsync" | ||
2 | HOMEPAGE = "http://www.rsnapshot.org" | ||
3 | BUGTRACKER = "https://sourceforge.net/projects/rsnapshot/" | ||
4 | SECTION = "console/network" | ||
5 | |||
6 | LICENSE = "GPLv2" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a" | ||
8 | |||
9 | RDEPENDS_${PN} = "rsync \ | ||
10 | perl \ | ||
11 | perl-module-dirhandle \ | ||
12 | perl-module-cwd \ | ||
13 | perl-module-getopt-std \ | ||
14 | perl-module-file-path \ | ||
15 | perl-module-file-stat \ | ||
16 | perl-module-posix \ | ||
17 | perl-module-fcntl \ | ||
18 | perl-module-io-file \ | ||
19 | perl-module-constant \ | ||
20 | perl-module-overloading \ | ||
21 | " | ||
22 | |||
23 | SRCREV = "1047cbb57937c29233388e2fcd847fecd3babe74" | ||
24 | PV = "1.3.1+git${SRCPV}" | ||
25 | |||
26 | SRC_URI = "git://github.com/DrHyde/${BPN};branch=master;protocol=git \ | ||
27 | " | ||
28 | |||
29 | S = "${WORKDIR}/git" | ||
30 | |||
31 | inherit autotools | ||
32 | |||
33 | PACKAGECONFIG ??= "logger" | ||
34 | PACKAGECONFIG[logger] = "--with-logger=${bindir}/logger,--without-logger,,util-linux" | ||