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
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
# export DH_VERBOSE = 1
# export PYBUILD_VERBOSE=1
export LANG=C.UTF-8
export LC_ALL=C.UTF-8
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
# build custom manpage
@echo DEB_VERSION_UPSTREAM $(DEB_VERSION_UPSTREAM)
sed -e "s/__VERSION__/$(DEB_VERSION_UPSTREAM)/g" \
< debian/ueberzug.1.md.in > debian/ueberzug.1.md
pandoc debian/ueberzug.1.md -s -f markdown -t man -o debian/ueberzug.1
override_dh_installchangelogs:
dh_installchangelogs $(CURDIR)/debian/changelog.upstream
|