mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:57:39 +08:00
24 lines
305 B
Plaintext
24 lines
305 B
Plaintext
|
_pylib=/usr/lib/python2.6/site-packages
|
||
|
|
||
|
post_install() {
|
||
|
echo "byte-compile python modules ..."
|
||
|
python -m py_compile ${_pylib}/uipi.py
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
echo "Remove .pyc files ..."
|
||
|
rm -f ${_pylib}/uipi.pyc
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|