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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpkg/pkg-info.mk
CFLAGS=$(shell dpkg-buildflags --get CFLAGS) -no-pie
CXXFLAGS=$(shell dpkg-buildflags --get CXXFLAGS) -no-pie
%:
dh $@ --buildsystem=cmake --with python2,python3 --no-parallel
override_dh_auto_configure:
dh_auto_configure -- -DREVISION_LAST=$(DEB_VERSION_UPSTREAM) -DREVISION=$(DEB_VERSION_UPSTREAM) -DLLVM_DEFINITIONS="-D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS" -DBCC_KERNEL_HAS_SOURCE_DIR=1 -DPYTHON_CMD="python2;python3"
override_dh_auto_install:
dh_auto_install
test -d $(CURDIR)/debian/tmp/usr/share/bcc/tools/doc && mv $(CURDIR)/debian/tmp/usr/share/bcc/tools/doc/* $(CURDIR)/debian/tmp/usr/share/bcc/doc/ && rm -d $(CURDIR)/debian/tmp/usr/share/bcc/tools/doc
for eachFile in $(CURDIR)/debian/tmp/usr/share/bcc/tools/* ; do \
test -f $$eachFile && mv $$eachFile $$eachFile-bpfcc ; \
done
for eachMan in $(CURDIR)/debian/tmp/usr/share/bcc/man/man8/* ; do \
test -f $$eachMan && manPage=`basename $$eachMan | cut -d "." -f1`; \
mv $$eachMan $(CURDIR)/debian/tmp/usr/share/bcc/man/man8/$$manPage-bpfcc.8 ; \
done
override_dh_installdocs:
dh_installdocs -A debian/README.Debian
override_dh_auto_test:
@# We can't really run root privilege tests in build env
# do not run tests
|