ceb08cea2c
Note, these directories are missing Makefiles.. I know that.. and I'm working on it.
13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
# $NetBSD: script,v 1.1 2001/01/05 02:06:58 garbled Exp $
|
|
if [ "$2" = "yes" ]; then
|
|
RECURSE="-r"
|
|
fi
|
|
if [ "$3" = "yes" ]; then
|
|
FORCE="-f"
|
|
fi
|
|
pkg_delete -v $FORCE $RECURSE $1
|
|
if [ $? -eq 0 ]; then
|
|
echo "Successfully removed pkg $1"
|
|
fi
|