Skip to content

Commit 0899763

Browse files
authored
Check sha256sum of files downloaded with wget (#27)
1 parent 9594e2b commit 0899763

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ apk add alpine-sdk util-linux strace file autoconf automake libtool xz
1313
# Build static libfuse3 with patch for https://github.com/AppImage/type2-runtime/issues/10
1414
apk add eudev-dev gettext-dev linux-headers meson # From https://git.alpinelinux.org/aports/tree/main/fuse3/APKBUILD
1515
wget -c -q "https://github.com/libfuse/libfuse/releases/download/fuse-3.15.0/fuse-3.15.0.tar.xz"
16+
echo "70589cfd5e1cff7ccd6ac91c86c01be340b227285c5e200baa284e401eea2ca0 fuse-3.15.0.tar.xz" | sha256sum -c
1617
tar xf fuse-3.*.tar.xz
1718
cd fuse-3.*/
1819
patch -p1 < ../patches/libfuse/mount.c.diff
@@ -30,6 +31,7 @@ export CFLAGS="-ffunction-sections -fdata-sections -Os"
3031
apk add zstd-dev zlib-dev zlib-static # fuse3-dev fuse3-static fuse-static fuse-dev
3132
find / -name "libzstd.*" 2>/dev/null || true
3233
wget -c -q "https://github.com/vasi/squashfuse/archive/e51978c.tar.gz"
34+
echo "f544029ad30d8fbde4e4540c574b8cdc6d38b94df025a98d8551a9441f07d341 e51978c.tar.gz" | sha256sum -c
3335
tar xf e51978c.tar.gz
3436
cd squashfuse-*/
3537
./autogen.sh

0 commit comments

Comments
 (0)