aboutsummaryrefslogtreecommitdiffstats
path: root/devel/py-wsgiutils/files/pkg-install.in
blob: 9cddbe28f1674cd59a55a0ee3d4cafadc720305b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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