mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
13 lines
144 B
Bash
13 lines
144 B
Bash
#!/bin/sh -x
|
|
|
|
set -x
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
glib-compile-schemas ${PKG_PREFIX}/share/glib/schemas
|
|
;;
|
|
esac
|
|
#EOF
|