freebsd-ports/devel/py-ruledispatch/files/pkg-install.in
Nicola Vitale 20a3ee6f8d Rule-based Dispatching and Generic Functions
Author:	Phillip J. Eby <peak@eby-sarna.com>

PR:		ports/106767
Submitted by:	Dryice Liu	<dryice at dryice.name>
Approved by:	alexbl (mentor)
2007-01-04 14:15:45 +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