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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#!/usr/bin/make -f
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# see ENVIRONMENT in dpkg-buildflags(1)
export DEB_CPPFLAGS_MAINT_APPEND = -DJUCE_JACK=1 -DJUCE_MODAL_LOOPS_PERMITTED=1
export DEB_LDFLAGS_MAINT_APPEND =
# iem-plugin-suite uses some c++11 features requiring atomic_store_8 and
# atomic_load_8, so we need to link with libatomic on
# armel, powerpc, powerpcspe, m68k, mips, mipsel, and sh4
# see also:
# - https://gcc.gnu.org/wiki/Atomic
# - https://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary
# - the 'clasp' packaging
noatomicarch = $(shell dpkg-architecture -qDEB_HOST_ARCH | egrep -x "(armel|powerpc|powerpcspe|m68k|mips|mipsel|sh4)")
# link with libatomic on architectures without built-in atomic
ifeq ($(if $(noatomicarch),atomic), atomic)
DEB_LDFLAGS_MAINT_APPEND += -latomic
endif
JUCE_VERSION := $(shell dpkg-query --show --showformat='$${source:Version}' juce-modules-source)
%:
dh $@ --buildsystem=cmake
override_dh_auto_configure:
dh_auto_configure -- \
-DIEM_USE_SYSTEM_JUCE=ON \
-DIEM_BUILD_STANDALONE=ON \
-DIEM_BUILD_VST2=ON \
-DIEM_BUILD_VST3=OFF \
-DVST2SDKPATH=/usr/include \
$(empty)
execute_before_dh_install:
# install the VST plugins and the standalong applications
find $(CURDIR) -type f -executable -path "*_artefacts/*" -path "*/Standalone/*" -print0 | xargs -r0 ./debian/install.sh
override_dh_installchangelogs:
dh_installchangelogs ChangeLog.md
override_dh_gencontrol:
dh_gencontrol -- \
-Vjuce:BuiltUsing="juce ( = $(JUCE_VERSION) )"
execute_after_dh_clean:
rm -rf _man _vst _bin
licensecheck:
licensecheck --deb-machine -r * \
> debian/copyright_newhints
cmp debian/copyright_hints debian/copyright_newhints \
&& rm debian/copyright_newhints
|