view verysimpleslideshow/Makefile.aur @ 5:193b5a5099f6

postagelabels-0.220120-3.1_PKG-Debian12
author prymula <prymula76@outlook.com>
date Thu, 01 Feb 2024 19:06:10 +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