mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-11 13:00:35 +00:00
16 lines
228 B
Plaintext
Executable File
16 lines
228 B
Plaintext
Executable File
# package install script
|
|
|
|
action=$1
|
|
newversion=$2
|
|
oldversion=$3
|
|
|
|
case $action in
|
|
post-install|post-upgrade)
|
|
for i in /var/lib/scratchpkg/index/*; do
|
|
for ii in $i/*; do
|
|
[ -d $ii ] && rm -fr $ii
|
|
done
|
|
done
|
|
;;
|
|
esac
|