mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 18:41:17 +02:00
12 lines
232 B
Bash
12 lines
232 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
${PKG_PREFIX}/bin/gtk-update-icon-cache -q -f ${PKG_PREFIX}/share/icons/mate
|
|
${PKG_PREFIX}/bin/gtk-update-icon-cache -q -f ${PKG_PREFIX}/share/icons/menta
|
|
;;
|
|
esac
|
|
#EOF
|