freebsd-ports/devel/py-turbocheetah/files/pkg-install.in
Nicola Vitale 13f08785fd TurboGears plugin to support use of Cheetah templates.
Author: Kevin Dangoor
WWW:	http://www.turbogears.org/docs/plugins/template.html

Approved by:	alexbl (mentor, implicit)
2007-01-21 14:15:38 +00:00

16 lines
207 B
Bash

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