mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
12 lines
324 B
Bash
Executable File
12 lines
324 B
Bash
Executable File
#!/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 -------
|