view flappyufo/Makefile.aur @ 19:fff7215ba1e8

package for arch
author Przemyslaw <prymula76@outlook.com>
date Sun, 31 Mar 2024 16:10:46 +0200
parents e9c503d896a6
children
line wrap: on
line source

# with destiny for AUR
#prefix=/usr
all:
	ant compile
	ant jar
	
clean:
	ant clean
    
install: build/jar/FlappyUfo.jar
	mkdir -pm 0755 $(DESTDIR)/usr/games
	mkdir -pm 0755 $(DESTDIR)/usr/share/flappyufo
	mkdir -pm 0755 $(DESTDIR)/usr/share/applications
	install -m 0644 build/jar/FlappyUfo.jar $(DESTDIR)/usr/games
	install -m 0644 res/flappyufo.png $(DESTDIR)/usr/share/flappyufo
	install -m 0644 flappyufo.desktop $(DESTDIR)/usr/share/applications
    
.PHONY: install