view verysimpleslideshow/Makefile.aur @ 4:15fcbb8857c3

postagelabels-0.220120-0_PKG
author prymula <prymula76@outlook.com>
date Thu, 01 Feb 2024 18:27:49 +0100
parents 4bdac9bd90cc
children 709bdcd2937b
line wrap: on
line source

prefix=$DESTDIR

all:

install:
	mkdir -pm 0755 $(prefix)/bin
	install -m 0755 verysimpleslideshow.py $(prefix)/bin
	ln -s $(prefix)/bin/verysimpleslideshow.py $(prefix)/bin/vsss


uninstall:
	rm $(prefix)/bin/vsss
	rm $(prefix)/bin/verysimpleslideshow.py
	
.PHONY: all install uninstall