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
|
#!/usr/bin/make -f
NUMJOBS = $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1)
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
else
DEB_BUILD_OPTIONS += parallel=$(NUMJOBS)
export DEB_BUILD_OPTIONS
endif
export SOURCE_DATE_EPOCH = $(shell dpkg-parsechangelog -SDate | date -f- +%s)
export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed
# Disable WXDEBUG checks, which wx3.0 defaults to enabling but were off by
# default in wx2.8, to address issues such as #736368.
# Also enable reproducible builds by ensuring that timestamps are reproducible;
# see #824182.
export DEB_CPPFLAGS_MAINT_APPEND=-DNDEBUG \
-DBUILD_DATE="\"\\\"`date -u -d @$(SOURCE_DATE_EPOCH) +%Y-%m-%d`\\\"\"" \
-DBUILD_TIME="\"\\\"`date -u -d @$(SOURCE_DATE_EPOCH) +%T`\\\"\""
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@ \
--with autoreconf \
--parallel
override_dh_auto_configure:
# prevents FTBFS
touch $(CURDIR)/debian/codeblocks-headers.install.wx30
dh_auto_configure -- --with-contrib-plugins=all \
--disable-silent-rules \
--libdir=\$${exec_prefix}/lib
override_dh_install:
find $(CURDIR)/debian/tmp -name "*.la" -delete
dh_install --list-missing
override_dh_strip:
dh_strip --dbg-package=codeblocks-dbg
overide_dh_makeshlibs:
dh_makeshlibs -Xusr/lib/codeblocks/plugins -Xusr/lib/codeblocks/wxContribItems
override_dh_shlibdeps:
dh_shlibdeps -Xusr/lib/codeblocks/plugins
override_dh_auto_clean:
rm -f src/plugins/contrib/SmartIndent/manifest.xml
dh_auto_clean
get-orig-source:
# non-free "lena" images removed via debian/copyright Files-Excluded;
# see #794852 for details
uscan --download-current-version
|