11 lines
204 B
Bash
11 lines
204 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" = "POST-DEINSTALL" ]; then
|
|
set -x
|
|
find %%PREFIX%%/share/rocksndiamonds -type l -exec rm -- {} +
|
|
find %%PREFIX%%/share/rnd_jue -type l -exec rm -- {} +
|
|
fi
|
|
|