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