mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
- Added files/pkg-deinstall files/pkg-install - Added another MASTER_SITE - Added optional MSSQL support - Removed files/patch-setup.py - Taken maintainership by dryice@ PR: 106775 Submitted by: dryice@dryice.name Approved by: alexbl (mentor), dryice (maintainer)
16 lines
210 B
Bash
16 lines
210 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
PKGNAME=$1
|
|
#
|
|
case $2 in
|
|
POST-INSTALL)
|
|
easy_install -q -N -x -S %%PYTHON_SITELIBDIR%% %%EGG%%
|
|
;;
|
|
PRE-INSTALL)
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2!!!"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|