mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 15:29:15 -04:00
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)
16 lines
211 B
Bash
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
|