summaryrefslogtreecommitdiff
path: root/Makefile.aur
blob: ceef523ba68dbf767014c229948dfee44bfb6a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

prefix=/usr
    
all:
	ant compile
	ant jar
	
clean:
	ant clean

install: build/jar/ColorsMemory.jar
	mkdir -pm 0755 $(DESTDIR)$(prefix)/games
	mkdir -pm 0755 $(DESTDIR)$(prefix)/share/applications
	mkdir -pm 0755 $(DESTDIR)$(prefix)/share/colorsmemory
	mkdir -pm 0755 $(DESTDIR)$(prefix)/share/colorsmemory/icons
	install -m 0644 build/jar/ColorsMemory.jar $(DESTDIR)$(prefix)/games
	install -m 0644 colorsmemory.png $(DESTDIR)$(prefix)/share/colorsmemory/icons
	install -m 0644 ColorsMemory.desktop $(DESTDIR)$(prefix)/share/applications
    
.PHONY: install