mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
16 lines
193 B
Bash
16 lines
193 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
PREFIX=${PKG_PREFIX}
|
|
LOCALBASE=${PKG_PREFIX}
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
/bin/rm -f ${PKG_PREFIX}/share/icons/Adwaita/icon-theme.cache
|
|
;;
|
|
POST-DEINSTALL)
|
|
;;
|
|
esac
|
|
#EOF
|