1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/databases/py-sqlobject/files/pkg-deinstall.in
Nicola Vitale e5413cf277 - Updated to 0.7.2
- Added files/pkg-deinstall files/pkg-install
- Added another MASTER_SITE
- Added optional MSSQL support
- Removed files/patch-setup.py
- Taken  maintainership by dryice@

PR:		106775
Submitted by:	dryice@dryice.name
Approved by:	alexbl (mentor), dryice (maintainer)
2006-12-31 13:48:57 +00:00

18 lines
218 B
Bash

#!/bin/sh
# $FreeBSD$
PKGNAME=$1
#
case $2 in
DEINSTALL)
easy_install -q -m -x -S %%PYTHON_SITELIBDIR%% %%EGG%%
;;
POST-DEINSTALL)
exit 0
;;
*)
echo "Unexpected Argument $2!!!"
exit 1
;;
esac
exit 0