feat: add Arch Linux install target

This commit is contained in:
Daniel Langbein 2023-08-12 13:23:07 +02:00
parent b1327063a4
commit d4c832a144
2 changed files with 11 additions and 3 deletions

View File

@ -1,7 +1,15 @@
.PHONY: all
all:
all: install
.PHONY: install
install:
sudo pacman -S --needed base-devel
cd packaging && makepkg -fCcsri && rm -rf $(PKGNAME)
.PHONY: install-pip
install-pip:
sudo python3 -m pip install --upgrade --force-reinstall .
.PHONY: clean
clean:
.PHONY: uninstall-pip
uninstall-pip:
sudo python3 -m pip uninstall -y py-regex-replace