Mercurial > hg > pub > prymula > com
comparison colorsmemory/Makefile.aur @ 19:fff7215ba1e8
package for arch
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sun, 31 Mar 2024 16:10:46 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
18:b5e2aba31fdb | 19:fff7215ba1e8 |
---|---|
1 | |
2 prefix=/usr | |
3 | |
4 all: | |
5 ant compile | |
6 ant jar | |
7 | |
8 clean: | |
9 ant clean | |
10 | |
11 install: build/jar/ColorsMemory.jar | |
12 mkdir -pm 0755 $(DESTDIR)$(prefix)/games | |
13 mkdir -pm 0755 $(DESTDIR)$(prefix)/share/applications | |
14 mkdir -pm 0755 $(DESTDIR)$(prefix)/share/colorsmemory | |
15 mkdir -pm 0755 $(DESTDIR)$(prefix)/share/colorsmemory/icons | |
16 install -m 0644 build/jar/ColorsMemory.jar $(DESTDIR)$(prefix)/games | |
17 install -m 0644 colorsmemory.png $(DESTDIR)$(prefix)/share/colorsmemory/icons | |
18 install -m 0644 ColorsMemory.desktop $(DESTDIR)$(prefix)/share/applications | |
19 | |
20 .PHONY: install |