Mercurial > hg > pub > prymula > com
comparison immposiblerush/DEBIAN/debian.rules @ 0:2787f5e749ae
INIT
author | prymula <prymula76@outlook.com> |
---|---|
date | Thu, 21 Sep 2023 22:33:57 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2787f5e749ae |
---|---|
1 #!/usr/bin/make -f | |
2 | |
3 export DH_VERBOSE = 1 | |
4 | |
5 clean: | |
6 ant clean | |
7 | |
8 build: | |
9 ant compile | |
10 ant jar | |
11 | |
12 binary: | |
13 mkdir -pm 0755 debian/immposiblerush | |
14 mkdir -pm 0755 debian/immposiblerush/usr/games | |
15 mkdir -pm 0755 debian/immposiblerush/usr/share/immposiblerush | |
16 mkdir -pm 0755 debian/immposiblerush/usr/share/applications | |
17 cp build/jar/ImmposibleRush.jar debian/immposiblerush/usr/games | |
18 cp res/immposiblerush.png debian/immposiblerush/usr/share/immposiblerush | |
19 cp ImmposibleRush.desktop debian/immposiblerush/usr/share/applications | |
20 dh_gencontrol | |
21 dh_builddeb | |
22 | |
23 |