mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
8bb28dcc0c
(add support for empty directories and bin/netbeans symlink to ports/105254) PR: ports/105254 Submitted by: David Sledge <dsledge(at)appriss.com>
10 lines
87 B
Bash
10 lines
87 B
Bash
#!/bin/sh
|
|
|
|
case "$2" in
|
|
DEINSTALL)
|
|
rm -f %%PREFIX%%/bin/netbeans
|
|
;;
|
|
esac
|
|
|
|
exit 0
|