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 58
|
#! /usr/bin/make -f
# Build the libgcrypt package for Debian.
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
export DEB_BUILD_MAINT_OPTIONS := hardening=+bindnow
include /usr/share/dpkg/pkg-info.mk
WIN_FLAGS=LDFLAGS="-Xlinker --no-insert-timestamp" CFLAGS="-g -Os" CPPFLAGS=
override_dh_auto_configure:
# unbreak arch-only builds when texi is patched.
if test doc/gcrypt.texi -nt doc/version.texi ; then \
touch --reference=doc/version.texi doc/gcrypt.texi ; \
fi
dh_auto_configure --verbose --builddirectory=build -- \
--enable-noexecstack \
--enable-ld-version-script --enable-static
override_dh_auto_build-indep:
# use current version in /usr/share/texmf/tex/texinfo/, see #803081
rm -f build-aux/texinfo.tex
cd build/doc && $(MAKE) stamp-vti
cd build/doc && $(MAKE) pdf html
for cpu in i686 x86_64; do \
mkdir -p build-$$cpu-w64-mingw32 && \
cd build-$$cpu-w64-mingw32 && $(WIN_FLAGS) ../configure \
--prefix=/usr/$$cpu-w64-mingw32 \
--with-libgpg-error-prefix=/usr/$$cpu-w64-mingw32 \
--disable-padlock-support --disable-asm \
--enable-static \
--host $$cpu-w64-mingw32 && \
$(WIN_FLAGS) $(MAKE) \
|| exit 1 ; \
cd .. ; \
done
debian/tmp/usr/include/gcrypt.h:
dh_auto_install --verbose --builddirectory=build
override_dh_auto_install-indep: debian/tmp/usr/include/gcrypt.h
for cpu in i686 x86_64; do \
cd build-$$cpu-w64-mingw32 && \
$(MAKE) install DESTDIR=$(shell pwd)/debian/tmp \
|| exit 1 ; \
cd .. ; \
done
find debian/tmp -name libgcrypt.la -type f -delete
override_dh_installinfo:
dh_installinfo
if test -e debian/libgcrypt20-doc ; then \
cd debian/libgcrypt20-doc/usr/share/info && \
sed -i -e 's:image src="\([^"]*.png"\):image src="/usr/share/doc/libgcrypt20-doc/html/\1:g' *.info* ; \
fi
%:
dh $@ --builddirectory=build
|