mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
Merge pull request #57 from falk-werner/update_libfuse
updated libfuse to 3.9.1
This commit is contained in:
commit
c0fa115a3b
4
Makefile
4
Makefile
@ -56,11 +56,11 @@ FETCH_TARGETS += $(FETCHDIR)/googletest-release-$(GTEST_VERSION).tar.gz
|
|||||||
$(FETCHDIR)/googletest-release-$(GTEST_VERSION).tar.gz: URL := https://github.com/google/googletest/archive/release-$(GTEST_VERSION).tar.gz
|
$(FETCHDIR)/googletest-release-$(GTEST_VERSION).tar.gz: URL := https://github.com/google/googletest/archive/release-$(GTEST_VERSION).tar.gz
|
||||||
$(SKIP_MD5SUM)$(FETCHDIR)/googletest-release-$(GTEST_VERSION).tar.gz: MD5 := ecd1fa65e7de707cd5c00bdac56022cd
|
$(SKIP_MD5SUM)$(FETCHDIR)/googletest-release-$(GTEST_VERSION).tar.gz: MD5 := ecd1fa65e7de707cd5c00bdac56022cd
|
||||||
|
|
||||||
FUSE_VERSION ?= 3.9.0
|
FUSE_VERSION ?= 3.9.1
|
||||||
DOCKER_BUILDARGS += FUSE_VERSION=$(FUSE_VERSION)
|
DOCKER_BUILDARGS += FUSE_VERSION=$(FUSE_VERSION)
|
||||||
FETCH_TARGETS += $(FETCHDIR)/libfuse-fuse-$(FUSE_VERSION).tar.gz
|
FETCH_TARGETS += $(FETCHDIR)/libfuse-fuse-$(FUSE_VERSION).tar.gz
|
||||||
$(FETCHDIR)/libfuse-fuse-$(FUSE_VERSION).tar.gz: URL := https://github.com/libfuse/libfuse/archive/fuse-$(FUSE_VERSION).tar.gz
|
$(FETCHDIR)/libfuse-fuse-$(FUSE_VERSION).tar.gz: URL := https://github.com/libfuse/libfuse/archive/fuse-$(FUSE_VERSION).tar.gz
|
||||||
$(SKIP_MD5SUM)$(FETCHDIR)/libfuse-fuse-$(FUSE_VERSION).tar.gz: MD5 := 31b19277c039ae225927edc29193d34f
|
$(SKIP_MD5SUM)$(FETCHDIR)/libfuse-fuse-$(FUSE_VERSION).tar.gz: MD5 := 5f7c1062def710d8b60343524a18cc82
|
||||||
|
|
||||||
WEBSOCKETS_VERSION ?= 3.2.0
|
WEBSOCKETS_VERSION ?= 3.2.0
|
||||||
DOCKER_BUILDARGS += WEBSOCKETS_VERSION=$(WEBSOCKETS_VERSION)
|
DOCKER_BUILDARGS += WEBSOCKETS_VERSION=$(WEBSOCKETS_VERSION)
|
||||||
|
@ -50,7 +50,7 @@ RUN set -x \
|
|||||||
&& make "$PARALLELMFLAGS" install \
|
&& make "$PARALLELMFLAGS" install \
|
||||||
&& rm -rf "$builddir"
|
&& rm -rf "$builddir"
|
||||||
|
|
||||||
ARG FUSE_VERSION=3.9.0
|
ARG FUSE_VERSION=3.9.1
|
||||||
|
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& builddeps="linux-headers eudev-dev python3 py3-pip py3-setuptools py3-cryptography" \
|
&& builddeps="linux-headers eudev-dev python3 py3-pip py3-setuptools py3-cryptography" \
|
||||||
|
@ -49,7 +49,7 @@ RUN set -x \
|
|||||||
&& make "$PARALLELMFLAGS" install \
|
&& make "$PARALLELMFLAGS" install \
|
||||||
&& rm -rf "$builddir"
|
&& rm -rf "$builddir"
|
||||||
|
|
||||||
ARG FUSE_VERSION=3.9.0
|
ARG FUSE_VERSION=3.9.1
|
||||||
|
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& builddeps="udev gettext python3 python3-pip python3-setuptools python3-wheel" \
|
&& builddeps="udev gettext python3 python3-pip python3-setuptools python3-wheel" \
|
||||||
|
@ -54,7 +54,7 @@ RUN set -x \
|
|||||||
&& make "$PARALLELMFLAGS" install \
|
&& make "$PARALLELMFLAGS" install \
|
||||||
&& rm -rf "$builddir"
|
&& rm -rf "$builddir"
|
||||||
|
|
||||||
ARG FUSE_VERSION=3.9.0
|
ARG FUSE_VERSION=3.9.1
|
||||||
|
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& builddeps="linux-headers eudev-dev python3 py3-pip py3-setuptools py3-cryptography" \
|
&& builddeps="linux-headers eudev-dev python3 py3-pip py3-setuptools py3-cryptography" \
|
||||||
|
@ -52,7 +52,7 @@ RUN set -x \
|
|||||||
&& make "$PARALLELMFLAGS" install \
|
&& make "$PARALLELMFLAGS" install \
|
||||||
&& rm -rf "$builddir"
|
&& rm -rf "$builddir"
|
||||||
|
|
||||||
ARG FUSE_VERSION=3.9.0
|
ARG FUSE_VERSION=3.9.1
|
||||||
|
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& builddeps="udev gettext python3 python3-pip python3-setuptools python3-wheel" \
|
&& builddeps="udev gettext python3 python3-pip python3-setuptools python3-wheel" \
|
||||||
|
@ -47,9 +47,9 @@ After that, you will find the API documentation in the doc/api subdirectory.
|
|||||||
|
|
||||||
To install libfuse, meson is needed. Please refer to [meson quick guide](https://mesonbuild.com/Quick-guide.html) for setup instructions.
|
To install libfuse, meson is needed. Please refer to [meson quick guide](https://mesonbuild.com/Quick-guide.html) for setup instructions.
|
||||||
|
|
||||||
wget -O fuse-3.8.0.tar.gz https://github.com/libfuse/libfuse/archive/fuse-3.8.0.tar.gz
|
wget -O fuse-3.9.1.tar.gz https://github.com/libfuse/libfuse/archive/fuse-3.9.1.tar.gz
|
||||||
tar -xf fuse-3.8.0.tar.gz
|
tar -xf fuse-3.9.1.tar.gz
|
||||||
cd libfuse-fuse-3.8.0
|
cd libfuse-fuse-3.9.1
|
||||||
mkdir .build
|
mkdir .build
|
||||||
cd .build
|
cd .build
|
||||||
meson ..
|
meson ..
|
||||||
|
Loading…
Reference in New Issue
Block a user