mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
Author: Phillip J. Eby <peak@eby-sarna.com> PR: ports/106767 Submitted by: Dryice Liu <dryice at dryice.name> Approved by: alexbl (mentor)
17 lines
221 B
Bash
17 lines
221 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
PKGNAME=$1
|
|
#
|
|
case $2 in
|
|
DEINSTALL)
|
|
easy_install -q -N -m -x -S %%PYTHON_SITELIBDIR%% %%EGG%%
|
|
;;
|
|
POST-DEINSTALL)
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2!!!"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|