Mercurial > hg > pub > prymula > com
annotate immposiblerush/Makefile.aur @ 19:fff7215ba1e8
package for arch
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sun, 31 Mar 2024 16:10:46 +0200 |
parents | 923377f8ebcb |
children |
rev | line source |
---|---|
7 | 1 # with destiny for AUR |
2 #prefix=/usr | |
3 all: | |
4 ant compile | |
5 ant jar | |
6 | |
7 clean: | |
8 ant clean | |
9 | |
10 install: build/jar/ImmposibleRush.jar | |
8
923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
prymula <prymula76@outlook.com>
parents:
7
diff
changeset
|
11 mkdir -pm 0755 $(DESTDIR)/usr/games |
923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
prymula <prymula76@outlook.com>
parents:
7
diff
changeset
|
12 mkdir -pm 0755 $(DESTDIR)/usr/share/immposiblerush |
923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
prymula <prymula76@outlook.com>
parents:
7
diff
changeset
|
13 mkdir -pm 0755 $(DESTDIR)/usr/share/applications |
923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
prymula <prymula76@outlook.com>
parents:
7
diff
changeset
|
14 install -m 0644 build/jar/ImmposibleRush.jar $(DESTDIR)/usr/games |
923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
prymula <prymula76@outlook.com>
parents:
7
diff
changeset
|
15 install -m 0644 res/immposiblerush.png $(DESTDIR)/usr/share/immposiblerush |
923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
prymula <prymula76@outlook.com>
parents:
7
diff
changeset
|
16 install -m 0644 ImmposibleRush.desktop $(DESTDIR)/usr/share/applications |
7 | 17 |
18 .PHONY: install |