1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_build:
chmod -R a-x,u=rwX,go=rX Samples
find Samples -depth -type d -exec sh -c 'd="{}"; rmdir --ignore-fail-on-non-empty "$$d" ; test -d "$$d" || echo "removed $$d"' \;
# nothing to do at build time
override_dh_auto_test:
override_dh_auto_install:
override_dh_auto_clean:
execute_after_dh_fixperms:
hardlink -v -t debian/nvidia-cuda-samples/usr/share/doc/nvidia-cuda-toolkit/examples
override_dh_compress:
dh_compress -X/examples/
|