1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
noatomicarch = $(shell dpkg-architecture -qDEB_HOST_ARCH | egrep -x "(armel|powerpc|powerpcspe|m68k|mips|mipsel|sh4|riscv64)")
# link with libatomic on architectures without built-in atomic
ifeq ($(if $(noatomicarch),atomic), atomic)
LIBS += -latomic
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -DNoNeonPlease=ON
override_dh_installman:
asciidoctor -b manpage doc/zynaddsubfx.1.txt
dh_installman
|