#!/usr/bin/make -f include /usr/share/dpkg/pkg-info.mk PKG = $(DEB_SOURCE) export PYBUILD_SYSTEM = custom export PYBUILD_INSTALL_ARGS = HOME=debian/fakehome \ && mkdir --parents "$$HOME" \ && /usr/bin/python3 setup.py install --destdir debian/tmp \ && rm -rf "$$HOME" # omit git hint files # omit icons (shipped with sugar-*-icon-theme) %: dh $@ --buildsystem=pybuild -X.git -Xusr/share/icons execute_after_dh_install: # Fix broken paths in desktop file # * TODO: drop when fixed in sugar-toolkit-gtk3 find debian/*/usr/share -type f -name '*.desktop' \ -execdir perl -pi -e 's,^\S+\s*=\s*\K\S*(?=/usr/share),,g' '{}' ';' # Ensure proper hash-bang in Python script (Python Policy 0.9 ยง3.1) perl -pi -e 's,^#! ?/usr/bin/(env )?python[[:print:]]*$$,#!/usr/bin/python3,' \ debian/*/usr/share/sugar/activities/*/setup.py