We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4213595 commit d2396d0Copy full SHA for d2396d0
build.yaml
@@ -18,7 +18,9 @@ build-env:
18
libcap-dev libcap-static \
19
libapparmor-dev \
20
zlib-static lz4-static \
21
- zstd-static \
+ zstd-dev \
22
+ xz \
23
+ gettext-dev \
24
lvm2-dev util-linux-dev \
25
squashfs-tools-ng-dev \
26
linux-headers
@@ -60,6 +62,14 @@ build-env:
60
62
make -j$(grep -c processor /proc/cpuinfo) install
61
63
cd /
64
65
+ # build lzma
66
+ git clone -b v5.2.6 https://github.com/xz-mirror/xz.git
67
+ cd xz
68
+ ./autogen.sh
69
+ ./configure --enable-static --enable-shared --prefix=/usr
70
+ make -j$(grep -c processor /proc/cpuinfo) install
71
+ cd /
72
+
73
build:
74
build_only: true
75
from:
0 commit comments