comparison verysimpleslideshow/Makefile.aur @ 2:4bdac9bd90cc

vsss-0.230913-0.1_PKG
author prymula <prymula76@outlook.com>
date Thu, 01 Feb 2024 17:13:37 +0100
parents
children 709bdcd2937b
comparison
equal deleted inserted replaced
1:82b75cc1e524 2:4bdac9bd90cc
1 prefix=$DESTDIR
2
3 all:
4
5 install:
6 mkdir -pm 0755 $(prefix)/bin
7 install -m 0755 verysimpleslideshow.py $(prefix)/bin
8 ln -s $(prefix)/bin/verysimpleslideshow.py $(prefix)/bin/vsss
9
10
11 uninstall:
12 rm $(prefix)/bin/vsss
13 rm $(prefix)/bin/verysimpleslideshow.py
14
15 .PHONY: all install uninstall