shuts down alongside any TurboGears applications you write, in the same way that visit tracking and identity do. TurboMail uses built-in Python modules for SMTP communication and MIME e-mail creation, but greatly simplifies these tasks by performing the grunt-work for you. Additionally, TurboMail is multi-threaded, allowing for single or batch enqueueing and background delivery of mail. Author: Top Floor Computer Systems Ltd. WWW: http://trac.orianagroup.com/turbomail/
16 lines
216 B
Bash
16 lines
216 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
PKGNAME=$1
|
|
#
|
|
case $2 in
|
|
POST-INSTALL)
|
|
%%EASY_INSTALL_CMD%% -q -S %%PYTHON_SITELIBDIR%% %%EGG_VER%%
|
|
;;
|
|
PRE-INSTALL)
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2!!!"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|