ports/textproc/py-genshi-devel/files/pkg-install.in
Nicola Vitale 9c66313a36 Genshi is a Python library that provides an integrated set of components
for parsing, generating, and processing HTML, XML or other textual content
for output generation on the web. The major feature is a template language,
which is heavily inspired by Kid.

WWW:	http://genshi.wedgewall.org/

Approved by:	alexbl (mentor, implicit)
2007-01-24 09:15:30 +00:00

16 lines
211 B
Bash

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