mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 18:41:17 +02:00
16 lines
158 B
Bash
16 lines
158 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
#PREFIX=${PKG_PREFIX}
|
|
#LOCALBASE=${PKG_PREFIX}
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
${PKG_PREFIX}/bin/dot -c
|
|
;;
|
|
esac
|
|
#EOF
|