Codebase list minetest-mod-throwing / 9edbe2f
Package new upstream 1.1 Julien Puydt 4 years ago
5 changed file(s) with 15 addition(s) and 34 deletion(s). Raw diff Collapse all Expand all
0 minetest-mod-throwing (1.1-1) UNRELEASED; urgency=medium
1
2 * New upstream release.
3
4 -- Julien Puydt <jpuydt@debian.org> Thu, 02 Apr 2020 17:34:12 +0200
5
06 minetest-mod-throwing (1.0-2) unstable; urgency=medium
17
28 * Drop d/compat and depend on dh-compat 12.
1111 Package: minetest-mod-throwing
1212 Architecture: all
1313 Depends: ${shlibs:Depends}, ${misc:Depends}, minetest | minetest-server
14 Description: Minetest mod - Throwing and throwables
15 This minetest extension provides two parts:
16 - the first is an abstract programming interface to declare
17 throwing and throwables;
18 - the second uses the first to enable basic bows and arrows.
14 Suggests: minetest-mod-throwing-arrows
15 Description: Minetest mod - Throwing system
16 This minetest extension provides an abstract programming
17 interface to declare throwing and throwables.
18 .
19 The minetest-mod-throwing-arrows package uses it to actually
20 provide bows and arrows.
00 README.md
1 README.throwing.md
2 README.throwing_arrows.md
0 modpack.txt usr/share/games/minetest/mods/throwing
1 throwing usr/share/games/minetest/mods/throwing
2 throwing_arrows usr/share/games/minetest/mods/throwing
0 mod.conf usr/share/games/minetest/mods/throwing
1 init.lua usr/share/games/minetest/mods/throwing
11
22 %:
33 dh $@
4
5 override_dh_auto_build:
6 mv throwing/README.md README.throwing.md
7 mv throwing/LICENSE.txt LICENSE.throwing.txt
8 mv throwing_arrows/README.md README.throwing_arrows.md
9 mv throwing_arrows/LICENSE.txt LICENSE.throwing_arrows.txt
10 mv throwing_arrows/screenshot.png screenshot.throwing_arrows.png
11
12 override_dh_auto_clean:
13 if test -f README.throwing.md; then \
14 mv README.throwing.md throwing/README.md ; \
15 fi
16 if test -f LICENSE.throwing.txt; then \
17 mv LICENSE.throwing.txt throwing/LICENSE.txt ; \
18 fi
19 if test -f README.throwing_arrows.md; then \
20 mv README.throwing_arrows.md throwing_arrows/README.md ; \
21 fi
22 if test -f LICENSE.throwing_arrows.txt; then \
23 mv LICENSE.throwing_arrows.txt throwing_arrows/LICENSE.txt ; \
24 fi
25 if test -f screenshot.throwing_arrows.png; then \
26 mv screenshot.throwing_arrows.png throwing_arrows/screenshot.png ; \
27 fi