aboutsummaryrefslogtreecommitdiffstats
path: root/devel/pear-PEAR/pkg-install
blob: f622fdfce650dbcfe147303c00118e5b48a5d302 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# $FreeBSD$
#
# Register the package $1 in the port registry

PREFIX=${PKG_PREFIX:-/usr/local}
PEAR=${PREFIX}/bin/pear
PKGREGDIR=${PREFIX}/share/pear/packages/$1

[ "x$1" = "x" ] && exit 1
if [ "x$2" = "xPOST-INSTALL" ]; then
    ${PEAR} install -r -f ${PKGREGDIR}/package.xml
fi