From b13dcf9a5d65a059349925516a72e8e435d9ea1d Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Sat, 8 Nov 2025 19:07:01 +0100 Subject: [PATCH] build: add make task for deb packages This requires cargo-deb. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 3c4d095..2d4cbd3 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,10 @@ linux-package: linux-binary-x86_64 tar -czvf osc-variant-$(VERSION)_linux.tar.gz osc-variant/ rm -rf osc-variant || true +.PHONY: linux-deb +linux-deb: linux-binary-x86_64 + cargo deb --features unzip-osb --target=x86_64-unknown-linux-gnu --deb-version $(VERSION) + binary-all: win-binary-x86_64 linux-binary-x86_64 .PHONY: win-binary-x86_64