mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
12 lines
147 B
Bash
12 lines
147 B
Bash
#!/bin/sh
|
|
set -x
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
${PKG_PREFIX}/bin/gdk-pixbuf-query-loaders --update-cache
|
|
;;
|
|
esac
|
|
exit 0
|
|
#EOF
|