1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all reproducible=+all future=+lfs
%:
dh $@ --buildsystem=cmake
override_dh_auto_configure:
dh_auto_configure --buildsystem=cmake -- \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_SKIP_INSTALL_RPATH=ON
execute_before_dh_auto_test:
dh_auto_build --buildsystem=cmake -- tests
execute_after_dh_auto_install:
rm -f debian/tmp/usr/share/doc/dart/data/screencap/.KEEP
override_dh_compress:
dh_compress \
-X.hpp -X.h -X.c -X.cpp \
-X.dae -X.obj -X.stl -X.STL \
-X.sdf -X.skel -X.urdf -X.vsk -X.world \
-X.c3d -X.changelog -X.dof -X.path -X.tris
execute_before_dh_link:
jdupes -rl debian/dart-doc/usr
|