mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
0ee5bea841
This change is used for fixing cmd path in rsnapshot.conf.default. The options --without-* disable checking command * on host and get the default path used, otherwise the host path will be injected into target configs. The runtime dependencies to ssh, logger, cp, du are optional and could be customized in rsnapshot.conf, so it's not needed that using PACKAGECONFIG to define the runtime dependencies. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
43 lines
1.3 KiB
BlitzBasic
43 lines
1.3 KiB
BlitzBasic
SUMMARY = "A filesystem snapshot utility based on rsync"
|
|
HOMEPAGE = "http://www.rsnapshot.org"
|
|
BUGTRACKER = "https://sourceforge.net/projects/rsnapshot/"
|
|
SECTION = "console/network"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a"
|
|
|
|
RDEPENDS_${PN} = "rsync \
|
|
perl \
|
|
perl-module-dirhandle \
|
|
perl-module-cwd \
|
|
perl-module-getopt-std \
|
|
perl-module-file-path \
|
|
perl-module-file-stat \
|
|
perl-module-posix \
|
|
perl-module-fcntl \
|
|
perl-module-io-file \
|
|
perl-module-constant \
|
|
perl-module-overloading \
|
|
"
|
|
|
|
SRCREV = "1047cbb57937c29233388e2fcd847fecd3babe74"
|
|
PV = "1.3.1+git${SRCPV}"
|
|
|
|
SRC_URI = "git://github.com/DrHyde/${BPN};branch=master;protocol=git \
|
|
file://configure-fix-cmd_rsync.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools
|
|
|
|
# Fix rsnapshot.conf.default:
|
|
# don't inject the host path into target configs.
|
|
EXTRA_OECONF += "--without-cp \
|
|
--without-rm \
|
|
--without-du \
|
|
--without-ssh \
|
|
--without-logger \
|
|
--without-rsync \
|
|
"
|