mirror of
https://codeberg.org/privacy1st/exec-notify
synced 2024-12-22 23:16:04 +01:00
14 lines
267 B
Makefile
14 lines
267 B
Makefile
PKGNAME := exec-notify
|
|
|
|
.PHONY: all
|
|
all: install
|
|
|
|
.PHONY: install
|
|
install: ## Install with pacman (on Arch Linux)
|
|
sudo pacman -S --needed base-devel
|
|
cd packaging && makepkg -fCcsri && rm -rf $(PKGNAME)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
sudo pacman -Rns python-$(PKGNAME)-git
|