From 0ef8f581d5db67dea9ceb12dfecec159551f2168 Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 3 Sep 2019 16:50:55 +0200 Subject: [PATCH 1/2] squashfs-tools: Download the release archive The real version is out, dump the pre-release. --- squashfs-tools.be0 | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/squashfs-tools.be0 b/squashfs-tools.be0 index ea33330d1..03d678938 100755 --- a/squashfs-tools.be0 +++ b/squashfs-tools.be0 @@ -1,16 +1,8 @@ #!/bin/env beesh -# BEE_VERSION squashfs-tools-4.4.0-1 - -SRCURL[0]="https://github.com/plougher/squashfs-tools.git" - -mee_getsources() { - cd ${S} - git clone ${SRCURL} . - # git checkout v${PKGFULLVERSION} - git checkout 00508d9bf2cc2c8d026483d817db212602ab6295 -} +# BEE_VERSION squashfs-tools-4.4.0-2 +SRCURL[0]="https://github.com/plougher/squashfs-tools/archive/4.4.tar.gz" #mee_patch() { # bee_patch From 7e8e0d245f345f6272f9163bcaa802f991957dba Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 3 Sep 2019 16:54:28 +0200 Subject: [PATCH 2/2] squashfs-tools: Enable alternative compressors Having only gzip available might turn into a showstopper. --- squashfs-tools.be0 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/squashfs-tools.be0 b/squashfs-tools.be0 index 03d678938..feabe6f62 100755 --- a/squashfs-tools.be0 +++ b/squashfs-tools.be0 @@ -14,6 +14,10 @@ SRCURL[0]="https://github.com/plougher/squashfs-tools/archive/4.4.tar.gz" mee_build() { cd ${S}/squashfs-tools + sed -i Makefile \ + -e '/^#XZ_SUPPORT/ s/^#//' \ + -e '/^#LZO_SUPPORT/ s/^#//' \ + -e '/^#LZ4_SUPPORT/ s/^#//' make }