1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CPPFLAGS_MAINT_APPEND = -I/usr/include/eigen3
%:
dh $@
override_dh_auto_build:
mkdir -p $(CURDIR)/obj/
mkdir -p $(CURDIR)/bin/
dh_auto_build
override_dh_auto_clean:
rm -f debian/upstream.example/examples.tar.xz
dh_auto_clean
override_dh_install:
cd debian/upstream.example && find -type f | LC_ALL=C sort | tar -T - --sort=name --mode=go=rX,u+rw,a-s --owner=root --group=root --numeric-owner -Jcvf examples.tar.xz
dh_install
|