mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
28 lines
698 B
BlitzBasic
28 lines
698 B
BlitzBasic
SUMMARY = "This is a filesystem client based on the SSH File Transfer Protocol using FUSE"
|
|
AUTHOR = "Miklos Szeredi <miklos@szeredi.hu>"
|
|
HOMEPAGE = "https://github.com/libfuse/sshfs"
|
|
SECTION = "console/network"
|
|
LICENSE = "GPLv2"
|
|
DEPENDS = "glib-2.0 fuse3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://github.com/libfuse/sshfs"
|
|
SRCREV = "9700b353700589dcc462205c638bcb40219a49c2"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson ptest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
${PYTHON_PN}-pytest \
|
|
bash \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/test
|
|
cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/
|
|
}
|