mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 23:05:34 +01:00
httpfs2: mount a http url as a file based on FUSE
Signed-off-by: Lei YU <yulei.sh@bytedance.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
8bec347159
commit
3eb4c089a8
|
|
@ -0,0 +1,25 @@
|
|||
SUMMARY = "This is a filesystem client based on the HTTP using FUSE"
|
||||
HOMEPAGE = "http://httpfs.sourceforge.net"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://debian/copyright;md5=83f224c5182f148ec92e0b9f84b3c6c7"
|
||||
|
||||
inherit pkgconfig
|
||||
|
||||
DEPENDS += "fuse"
|
||||
RDEPENDS_${PN} += "fuse"
|
||||
|
||||
SRC_URI += "https://astuteinternet.dl.sourceforge.net/project/httpfs/httpfs2/httpfs2-${PV}.tar.gz"
|
||||
SRC_URI[sha256sum] = "01cb4bb38deb344f540da6f1464dc7edbdeb51213ad810b8c9c282c1e17e0fc1"
|
||||
|
||||
S = "${WORKDIR}/httpfs2-${PV}"
|
||||
|
||||
do_compile() {
|
||||
cd ${S}
|
||||
oe_runmake httpfs2
|
||||
}
|
||||
|
||||
do_install() {
|
||||
cd ${S}
|
||||
install -d ${D}${bindir}
|
||||
install -m 0755 httpfs2 ${D}${bindir}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user