mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
8 lines
207 B
Plaintext
8 lines
207 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$2" = "POST-INSTALL" ]; then
|
||
|
ENFLE_PLUGINDIR=${PKG_PREFIX}/lib/enfle/plugins ${PKG_PREFIX}/bin/enfle -N
|
||
|
elif [ "$2" = "DEINSTALL" ]; then
|
||
|
rm -f ${PKG_PREFIX}/lib/enfle/plugins/.cache
|
||
|
fi
|