mirror of
https://github.com/love2d/love.git
synced 2026-08-12 16:40:57 +02:00
ac9ee9d3c7
And automatically get the timestamp for the changelog too. That does require an update to cmake 3.7, but as far as I can tell we never use a cmake version older than 3.16 (ubuntu 20.04).
24 lines
467 B
Makefile
Executable File
24 lines
467 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|
|
rm -f platform/unix/love-unstable.6
|
|
|
|
override_dh_installdocs:
|
|
dh_installdocs --link-doc=@LOVE_LIB_NAME@0
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs changes.txt
|
|
|
|
override_dh_installman:
|
|
cp -f platform/unix/love.6 platform/unix/love-unstable.6
|
|
dh_installman
|
|
|
|
override_dh_strip:
|
|
dh_strip -p@LOVE_LIB_NAME@0 --dbg-package=@LOVE_LIB_NAME@-dbg
|
|
dh_strip --remaining-packages
|
|
|