summaryrefslogtreecommitdiffstats
path: root/autoscripts/postinst-pypycompile
blob: b26c45f9b3b4f80aecf3c8365b839b20cb04c081 (plain)
1
2
3
4
5
if command -v pypycompile >/dev/null 2>&1; then
	pypycompile -p #PACKAGE# #ARGS#
elif pypy -m py_compile >/dev/null 2>&1; then
	dpkg -L #PACKAGE# | grep '\.py$' | pypy -m py_compile - >/dev/null
fi