We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 211216c + 70b4c6b commit 32a7ac2Copy full SHA for 32a7ac2
2 files changed
packaging/Dockerfile
@@ -13,7 +13,8 @@ RUN apt-get -qq update && \
13
devscripts debhelper fakeroot \
14
zip unzip \
15
gnupg dctrl-tools dput \
16
- liblcms2-2
+ liblcms2-2 \
17
+ pigz xz-utils
18
19
# prepare a nonroot user
20
COPY compiler.sudoers /etc/sudoers.d/compiler
packaging/package.sh
@@ -53,9 +53,9 @@ PKGDIR="/build/pkg/$PKGNAME"
53
rm -rf "/build/pkg"
54
mkdir "/build/pkg"
55
cd "/build/pkg"
56
-tar -xf "/build/jri-${DEB_JRI_PLATFORM}.tar.gz" -C "/build/pkg"
+tar -x -I 'pigz' -f "/build/jri-${DEB_JRI_PLATFORM}.tar.gz" -C "/build/pkg"
57
mv "/build/pkg/jri" "$PKGDIR"
58
-tar -cJf "$PKGDIR.orig.tar.xz" "$PKGNAME"
+tar -c -I 'xz -T0 -1' -f "$PKGDIR.orig.tar.xz" "$PKGNAME"
59
cp -rf /opt/jdkpkg/debian "$PKGDIR"
60
cd "$PKGDIR"
61
0 commit comments