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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpkg/architecture.mk
DEVPKG = $(CURDIR)/debian/libbotan-2-dev
DOCPKG = $(CURDIR)/debian/libbotan-2-doc
override_dh_clean:
dh_clean
rm -f $(CURDIR)/Certificate\ Store*.db
override_dh_auto_configure:
$(CURDIR)/configure.py \
--prefix=/usr/ \
--libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
$(if $(filter $(DEB_HOST_ARCH), armel armhf),--disable-neon) \
--with-rst2man \
--with-bzip2 \
--with-lzma \
--with-openssl \
--with-sqlite3 \
--with-tpm \
--with-zlib \
--with-python-versions=3 \
$(if $(filter $(DEB_HOST_ARCH), armhf),--cpu=armv7) \
$(if $(filter $(DEB_HOST_ARCH), hurd-i386),--cpu=x86_32) \
--distribution-info=$(shell dpkg-vendor --query Vendor)
override_dh_auto_test:
LD_LIBRARY_PATH=. $(CURDIR)/botan-test
override_dh_install-arch:
dh_install -a
sed -i -e 's/ -f\(debug\|file\)-prefix-map=[^ ]*=\. / /' $(DEVPKG)/usr/include/botan-2/botan/build.h
override_dh_install-indep:
dh_install -i
rm -rf $(DOCPKG)/usr/share/doc/libbotan-2-doc/handbook/.doctrees
override_dh_missing:
dh_missing --list-missing
%:
dh $@ --with python3
.PHONY: override_dh_clean override_dh_auto_configure override_dh_auto_test \
override_dh_install-arch override_dh_install-indep \
override_dh_missing
|