#!/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 app-specific GSettings schema (install only system-wide)
# omit git hint files
%:
	dh $@ --with linktree --buildsystem=pybuild -X.activity/org.laptop.WebActivity.gschema.xml -X.git

execute_after_dh_install:
# Fix favor ISO 639-1 when differing from ISO 639-2
	mv debian/$(PKG)/usr/share/locale/ibo \
		debian/$(PKG)/usr/share/locale/ig
# 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