Mercurial > hg > pub > prymula > com
comparison flappyufo/Makefile.aur @ 17:e9c503d896a6
flappyufo-0.230919-1_add_pkgbuild
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sat, 24 Feb 2024 17:47:35 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
16:8fa14e28f099 | 17:e9c503d896a6 |
---|---|
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/FlappyUfo.jar | |
11 mkdir -pm 0755 $(DESTDIR)/usr/games | |
12 mkdir -pm 0755 $(DESTDIR)/usr/share/flappyufo | |
13 mkdir -pm 0755 $(DESTDIR)/usr/share/applications | |
14 install -m 0644 build/jar/FlappyUfo.jar $(DESTDIR)/usr/games | |
15 install -m 0644 res/flappyufo.png $(DESTDIR)/usr/share/flappyufo | |
16 install -m 0644 flappyufo.desktop $(DESTDIR)/usr/share/applications | |
17 | |
18 .PHONY: install |