15 lines
380 B
Text
15 lines
380 B
Text
|
#!/usr/bin/make -f
|
||
|
|
||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||
|
|
||
|
%:
|
||
|
dh ${@}
|
||
|
|
||
|
execute_after_dh_auto_install:
|
||
|
# removing unused files
|
||
|
rm -f debian/tmp/usr/lib/*/*.la
|
||
|
rm -f debian/tmp/usr/share/doc/tinyframe/CHANGES
|
||
|
rm -f debian/tmp/usr/share/doc/tinyframe/COPYING
|
||
|
rm -f debian/tmp/usr/share/doc/tinyframe/COPYING.LESSER
|
||
|
rm -f debian/tmp/usr/share/doc/tinyframe/README.md
|