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
|
#!/usr/bin/make -f
DPKG_EXPORT_BUILDFLAGS := 1
include /usr/share/dpkg/architecture.mk
# Debian's ghc cannot compile anything with -fPIC at present, so we
# have to disable PIE hardening to avoid build failures on archs like
# amd64. See discussion on debian-haskell@lists.debian.org
DEB_BUILD_MAINT_OPTIONS = hardening=+all,-pie
# Building with LTO failed on ppc64el (LP: #2033639)
ifeq ("$(DEB_BUILD_ARCH)", "ppc64el")
DEB_BUILD_MAINT_OPTIONS += optimize=-lto
endif
export DEB_BUILD_MAINT_OPTIONS
# cabal likes to write to $HOME, so use Setup.hs directly
export BUILDER = ./Setup
# -j1 in the hope of making the build reproducible (see Makefile)
export BUILDEROPTIONS = -j1
%:
dh $@
# upstream's install-files target is not sufficient for our split into
# two binary packages, so disable it here and use dh_* tools
override_dh_auto_install:
# GHC cannot produce debugging symbols
override_dh_strip:
dh_strip --no-automatic-dbgsym
# ensure service name is 'debug-me' not 'debug-me-server'. This is so
# we are consistent with other distros despite our package split
override_dh_installinit:
dh_installinit --name=debug-me
|