diff --git a/debian/changelog b/debian/changelog index f48dcd0..8c54b16 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +minetest-mod-throwing (1.1-1) UNRELEASED; urgency=medium + + * New upstream release. + + -- Julien Puydt Thu, 02 Apr 2020 17:34:12 +0200 + minetest-mod-throwing (1.0-2) unstable; urgency=medium * Drop d/compat and depend on dh-compat 12. diff --git a/debian/control b/debian/control index c9168a8..32c2f20 100644 --- a/debian/control +++ b/debian/control @@ -12,8 +12,10 @@ Package: minetest-mod-throwing Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, minetest | minetest-server -Description: Minetest mod - Throwing and throwables - This minetest extension provides two parts: - - the first is an abstract programming interface to declare - throwing and throwables; - - the second uses the first to enable basic bows and arrows. +Suggests: minetest-mod-throwing-arrows +Description: Minetest mod - Throwing system + This minetest extension provides an abstract programming + interface to declare throwing and throwables. + . + The minetest-mod-throwing-arrows package uses it to actually + provide bows and arrows. diff --git a/debian/docs b/debian/docs index b706046..b43bf86 100644 --- a/debian/docs +++ b/debian/docs @@ -1,3 +1 @@ README.md -README.throwing.md -README.throwing_arrows.md diff --git a/debian/install b/debian/install index 8383520..b740593 100644 --- a/debian/install +++ b/debian/install @@ -1,3 +1,2 @@ -modpack.txt usr/share/games/minetest/mods/throwing -throwing usr/share/games/minetest/mods/throwing -throwing_arrows usr/share/games/minetest/mods/throwing +mod.conf usr/share/games/minetest/mods/throwing +init.lua usr/share/games/minetest/mods/throwing diff --git a/debian/rules b/debian/rules index f4d6ff1..2d33f6a 100755 --- a/debian/rules +++ b/debian/rules @@ -2,27 +2,3 @@ %: dh $@ - -override_dh_auto_build: - mv throwing/README.md README.throwing.md - mv throwing/LICENSE.txt LICENSE.throwing.txt - mv throwing_arrows/README.md README.throwing_arrows.md - mv throwing_arrows/LICENSE.txt LICENSE.throwing_arrows.txt - mv throwing_arrows/screenshot.png screenshot.throwing_arrows.png - -override_dh_auto_clean: - if test -f README.throwing.md; then \ - mv README.throwing.md throwing/README.md ; \ - fi - if test -f LICENSE.throwing.txt; then \ - mv LICENSE.throwing.txt throwing/LICENSE.txt ; \ - fi - if test -f README.throwing_arrows.md; then \ - mv README.throwing_arrows.md throwing_arrows/README.md ; \ - fi - if test -f LICENSE.throwing_arrows.txt; then \ - mv LICENSE.throwing_arrows.txt throwing_arrows/LICENSE.txt ; \ - fi - if test -f screenshot.throwing_arrows.png; then \ - mv screenshot.throwing_arrows.png throwing_arrows/screenshot.png ; \ - fi