Mercurial > hg > pub > prymula > scripts
annotate verysimpleslideshow/Makefile.aur @ 40:a2ac31358aba default tip
READEM FIX
author | prymula <prymula76@outlook.com> |
---|---|
date | Sat, 10 Feb 2024 22:37:08 +0100 |
parents | d202f30cd362 |
children |
rev | line source |
---|---|
2 | 1 |
2 all: | |
3 | |
4 install: | |
7
d202f30cd362
verysimpleslideshow-0.230913-0_ALLDISTRIBUTION
prymula <prymula76@outlook.com>
parents:
6
diff
changeset
|
5 mkdir -pm 0755 $(DESTDIR)/usr/bin |
d202f30cd362
verysimpleslideshow-0.230913-0_ALLDISTRIBUTION
prymula <prymula76@outlook.com>
parents:
6
diff
changeset
|
6 install -m 0755 verysimpleslideshow.py $(DESTDIR)/usr/bin |
d202f30cd362
verysimpleslideshow-0.230913-0_ALLDISTRIBUTION
prymula <prymula76@outlook.com>
parents:
6
diff
changeset
|
7 #ln -s $(DESTDIR)/usr/bin/verysimpleslideshow.py $(DESTDIR)usr//bin/vsss |
2 | 8 |
9 | |
10 uninstall: | |
7
d202f30cd362
verysimpleslideshow-0.230913-0_ALLDISTRIBUTION
prymula <prymula76@outlook.com>
parents:
6
diff
changeset
|
11 rm $(DESTDIR)/usr/bin/vsss |
d202f30cd362
verysimpleslideshow-0.230913-0_ALLDISTRIBUTION
prymula <prymula76@outlook.com>
parents:
6
diff
changeset
|
12 rm $(DESTDIR)/usr/bin/verysimpleslideshow.py |
2 | 13 |
7
d202f30cd362
verysimpleslideshow-0.230913-0_ALLDISTRIBUTION
prymula <prymula76@outlook.com>
parents:
6
diff
changeset
|
14 #.PHONY: all install |
2 | 15 .PHONY: all install uninstall |