#!/bin/sh set -e # --------------------- copied from dh-python 4.20191017 --------- if which py3compile >/dev/null 2>&1; then py3compile -p python3-notcurses fi if which pypy3compile >/dev/null 2>&1; then pypy3compile -p python3-notcurses || true fi # --------------------- end material copied from dh-python -------