common/hooks: add some hooks moved from xbps-src (not yet used).

This commit is contained in:
Juan RP
2014-02-12 12:55:42 +01:00
parent 372ed2763f
commit 907f392e4d
11 changed files with 486 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# This hook removes python bytecode files (.py[co]).
hook() {
msg_normal "$pkgver: removing python bytecode archives...\n"
find ${PKGDESTDIR} -type f -name *.py[co] -delete
}