- Assign maintainership to Chris Hutchinson <portmaster@bsdforge.com> - Cleanup Makefile, update pkg-descr - Stagify - Remove EXPIRATION_DATE PR: 193046 Submitted by: portmaster@bsdforge.com Reviewed by: riggs
13 lines
280 B
Bash
13 lines
280 B
Bash
#!/bin/sh
|
|
|
|
PATH_TO_WISH='%%WISH%%'
|
|
PGACCESS_HOME='%%PREFIX%%/share/postgresql/pgaccess'
|
|
PGLIB='%%LOCALBASE%%/lib'
|
|
PGPORT="${PGPORT:-5432}"
|
|
|
|
export PATH_TO_WISH
|
|
export PGACCESS_HOME
|
|
export PGLIB
|
|
export PGPORT
|
|
|
|
exec "${PATH_TO_WISH}" "${PGACCESS_HOME}/%%PROGRAM%%" "$@" > /dev/null
|