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
|
#!/usr/bin/make -f
export PREFIX=/usr
include /usr/share/dpkg/architecture.mk
ifeq ($(DEB_HOST_ARCH),amd64)
export BUILD_PROFILE=x86_64
endif
ifeq ($(DEB_HOST_ARCH),i386)
export BUILD_PROFILE=i586
endif
ifeq ($(DEB_HOST_ARCH),arm64)
export BUILD_PROFILE=aarch64
endif
ifeq ($(DEB_HOST_ARCH),armel)
export BUILD_PROFILE=armv7a
endif
ifeq ($(DEB_HOST_ARCH),armhf)
export BUILD_PROFILE=armv7a
endif
%:
dh $@
override_dh_auto_test:
# the test suite requires build options incompatible with what we
# ship in the package, so disable until upstream resolves this
override_dh_install:
# Documentation contains privacy-invading IFRAMEs in HTML code
# which generates Lintian warnings. HTML documentation is
# therefore removed, and documentation is linked at
# https://lsp-plug.in/?page=manuals
rm -r debian/tmp/usr/share/doc/lsp-plugins
dh_install
|