Add compression algo flag to dpkg command for arch build

Arch package failed to be extracted on pacman update because
of the default zstd algo
This commit is contained in:
edouardparis 2024-09-18 16:46:09 +02:00
parent 6e551919bd
commit 953a85b943

View File

@ -47,7 +47,7 @@ TARGET_DIR="$BUILD_DIR" ./contrib/reproducible/docker/docker-build.sh
cp "$BUILD_DIR/release/lianad" "$BUILD_DIR/release/liana-cli" "$BUILD_DIR/gui/release/liana-gui" ../README.md ./package/usr/bin/
DIRNAME="liana_$VERSION-1_amd64"
mv ./package "$DIRNAME"
dpkg-deb --build "$DIRNAME"
dpkg-deb -Zxz --build "$DIRNAME"
mv "$DIRNAME.deb" "$RELEASE_DIR"
)