diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:25:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:25:46 +0000 |
commit | 3071bf821d07a65b642b41811c52b7e4288fb6c9 (patch) | |
tree | 113c3b2e40f0c1ecea21d864258df914e60ce82c /debian/rules | |
parent | Adding upstream version 1:1.7.1. (diff) | |
download | libtraceevent-3071bf821d07a65b642b41811c52b7e4288fb6c9.tar.xz libtraceevent-3071bf821d07a65b642b41811c52b7e4288fb6c9.zip |
Adding debian version 1:1.7.1-1.debian/1%1.7.1-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..99be659 --- /dev/null +++ b/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/architecture.mk + +ifeq (,$(findstring terse,$(DEB_BUILD_OPTIONS))) + VERBOSE=1 +endif + +export CROSS_COMPILE=$(DEB_HOST_GNU_TYPE)- +PREFIX=/usr +build_flags = prefix=$(PREFIX) libdir_relative=lib/$(DEB_HOST_MULTIARCH) pkgconfig_dir=$(PREFIX)/lib/$(DEB_HOST_MULTIARCH)/pkgconfig V=$(VERBOSE) + +%: + dh $@ --no-parallel + +override_dh_auto_build: + dh_auto_build -- all doc $(build_flags) + +override_dh_auto_install: + dh_auto_install -- doc-install $(build_flags) + +override_dh_auto_test: |