mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
18e51b603d
- 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
14 lines
280 B
Bash
14 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
|