Skip to content

Commit

Permalink
releng: add Makefile to install Void deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zdykstra committed Oct 21, 2024
1 parent dbb23f1 commit 7bda2d5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions releng/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.DEFAULT_GOAL := help

SUDO ?= sudo
INSTALLOPTS ?= -Su

VOID_PKGS = buildah podman git github-cli signify

.PHONY: help setup-void clean-void

help:
@echo "Use \033[94mmake setup-void\033[m to install dependencies on Void Linux."
@echo "Use \033[94mmake clean-void\033[m to remove dependencies on Void Linux."

setup-void:
@$(SUDO) xbps-install $(INSTALLOPTS) $(VOID_PKGS)

clean-void:
@$(SUDO) xbps-remove -R $(VOID_PKGS)

0 comments on commit 7bda2d5

Please sign in to comment.